diff options
author | Dan McGee <dan@archlinux.org> | 2008-04-01 17:44:30 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-04-01 18:08:58 -0500 |
commit | ab9187d07de03e6545881a72180e76e728317bb9 (patch) | |
tree | 76970a8f5332d4edf8ccfcaea9c48e53207370eb /lib/libalpm/handle.c | |
parent | d9b9e60d7d4943ec0395a66bd40d22089cfbee35 (diff) |
Set handle->logstream to null after fclose()
We correctly closed the logfile stream when recalling set_logfile, but did
not NULL out the dead pointer once we did this. Fix the problem which was
the cause of FS#10056.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/handle.c')
-rw-r--r-- | lib/libalpm/handle.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index aaadd86d..36822285 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -427,6 +427,7 @@ int SYMEXPORT alpm_option_set_logfile(const char *logfile) } if(handle->logstream) { fclose(handle->logstream); + handle->logstream = NULL; } _alpm_log(PM_LOG_DEBUG, "option 'logfile' = %s\n", handle->logfile); return(0); |