Skip to content
Snippets Groups Projects
Commit 84c7349a authored by Sean Davis's avatar Sean Davis
Browse files

Fix CID 213288: Dereference before null

parent 9ffa3e90
No related branches found
No related tags found
No related merge requests found
...@@ -1066,7 +1066,7 @@ output_initialize (XfceRROutput *output, ...@@ -1066,7 +1066,7 @@ output_initialize (XfceRROutput *output,
g_print ("Output %lx Timestamp: %u\n", output->id, (guint32)info->timestamp); g_print ("Output %lx Timestamp: %u\n", output->id, (guint32)info->timestamp);
#endif #endif
if (!info || !output->info) { if (!info) {
/* FIXME: see the comment in crtc_initialize() */ /* FIXME: see the comment in crtc_initialize() */
/* Translators: here, an "output" is a video output */ /* Translators: here, an "output" is a video output */
g_set_error (error, XFCE_RR_ERROR, XFCE_RR_ERROR_RANDR_ERROR, g_set_error (error, XFCE_RR_ERROR, XFCE_RR_ERROR_RANDR_ERROR,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment