summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorSalvador Fandino2020-01-23 20:36:26 +0100
committerStefan Hajnoczi2020-01-30 22:33:50 +0100
commite144a605a614d22165000c69e8e1dc6986d45cd8 (patch)
tree28a01420e1a82b85f248518c109d418176521903 /vl.c
parenthw/display/qxl.c: Use trace_event_get_state_backends() (diff)
downloadqemu-e144a605a614d22165000c69e8e1dc6986d45cd8.tar.gz
qemu-e144a605a614d22165000c69e8e1dc6986d45cd8.tar.xz
qemu-e144a605a614d22165000c69e8e1dc6986d45cd8.zip
qemu_set_log_filename: filename argument may be NULL
NULL is a valid log filename used to indicate we want to use stderr but qemu_set_log_filename (which is called by bsd-user/main.c) was not handling it correctly. That also made redundant a couple of NULL checks in calling code which have been removed. Signed-off-by: Salvador Fandino <salvador@qindel.com> Message-Id: <20200123193626.19956-1-salvador@qindel.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/vl.c b/vl.c
index 24951b51a9..7dcb0879c4 100644
--- a/vl.c
+++ b/vl.c
@@ -3903,10 +3903,7 @@ int main(int argc, char **argv, char **envp)
/* Open the logfile at this point and set the log mask if necessary.
*/
- if (log_file) {
- qemu_set_log_filename(log_file, &error_fatal);
- }
-
+ qemu_set_log_filename(log_file, &error_fatal);
if (log_mask) {
int mask;
mask = qemu_str_to_log_mask(log_mask);