summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--qemu-ga.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/qemu-ga.c b/qemu-ga.c
index 3a88333a17..42e271f35f 100644
--- a/qemu-ga.c
+++ b/qemu-ga.c
@@ -836,12 +836,13 @@ int main(int argc, char **argv)
             become_daemon(pid_filepath);
         }
         if (log_filepath) {
-            s->log_file = fopen(log_filepath, "a");
-            if (!s->log_file) {
+            FILE *log_file = fopen(log_filepath, "a");
+            if (!log_file) {
                 g_critical("unable to open specified log file: %s",
                            strerror(errno));
                 goto out_bad;
             }
+            s->log_file = log_file;
         }
     }