git@sv
/
enscript.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
passthrough.test: Use sed instead of tail.
[enscript.git]
/
src
/
util.c
diff --git
a/src/util.c
b/src/util.c
index 39b8441ce6c3caf4697fba7034a14ce5e6b0bc50..17d89e78c6c799a1cbf666524a7403506acfcccc 100644
(file)
--- a/
src/util.c
+++ b/
src/util.c
@@
-30,7
+30,7
@@
#define CFG_FATAL(body) \
do { \
#define CFG_FATAL(body) \
do { \
- fprintf (stderr, "%s:%s:%d: ", program,
fname, line);
\
+ fprintf (stderr, "%s:%s:%d: ", program,
buffer_ptr(&fname), line);
\
fprintf body; \
fprintf (stderr, "\n"); \
fflush (stderr); \
fprintf body; \
fprintf (stderr, "\n"); \
fflush (stderr); \
@@
-108,10
+108,13
@@
read_config (char *path, char *file)
fp = fopen (buffer_ptr (&fname), "r");
fp = fopen (buffer_ptr (&fname), "r");
- buffer_uninit (&fname);
+ /* We wait to uninit the buffer so that CFG_FATAL can use it. */
if (fp == NULL)
if (fp == NULL)
- return 0;
+ {
+ buffer_uninit (&fname);
+ return 0;
+ }
while (fgets (buf, sizeof (buf), fp))
{
while (fgets (buf, sizeof (buf), fp))
{
@@
-436,6
+439,8
@@
read_config (char *path, char *file)
else
CFG_FATAL ((stderr, _("illegal option: %s"), token));
}
else
CFG_FATAL ((stderr, _("illegal option: %s"), token));
}
+
+ buffer_uninit (&fname);
return 1;
}
return 1;
}