diff options
author | Werner Koch <wk@gnupg.org> | 2007-10-19 10:49:07 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-10-19 10:49:07 +0200 |
commit | bea6c580f25b47cdccb3f088140cb15acbb02e06 (patch) | |
tree | a9dbbbb309e4d5109982058f33ecbbfe39ac03aa /tools/gpgconf-comp.c | |
parent | 2007-10-15 Daiki Ueno <ueno@unixuser.org> (wk) (diff) | |
download | gnupg2-bea6c580f25b47cdccb3f088140cb15acbb02e06.tar.xz gnupg2-bea6c580f25b47cdccb3f088140cb15acbb02e06.zip |
Fixed bug 842 (segv in gpgconf)
Diffstat (limited to 'tools/gpgconf-comp.c')
-rw-r--r-- | tools/gpgconf-comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 0f91edf44..ded646f7b 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -1880,7 +1880,7 @@ retrieve_options_from_file (gc_component_t component, gc_backend_t backend) list_option->active = 1; list_option->value = list; - if (fclose (list_file) && ferror (list_file)) + if (list_file && fclose (list_file) && ferror (list_file)) gc_error (1, errno, "error closing %s", list_pathname); xfree (line); } |