Avoid possible truncation of path strings when writing config file.

(cherry picked from commit 2e4bf05e21)
This commit is contained in:
Martin Whitaker
2021-01-03 19:47:29 +00:00
parent d9484b4f75
commit 25154b6482
+2 -2
View File
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2000-2020 Stephen Williams ([email protected])
* Copyright (c) 2000-2021 Stephen Williams ([email protected])
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
@@ -184,7 +184,7 @@ int verbose_flag = 0;
FILE *fp;
char line[MAXSIZE];
char tmp[MAXSIZE];
char tmp[MAXSIZE+24];
static char ivl_root[MAXSIZE];