compositor-drm: Handle incomplete [output] sections without crashing

dev
Kristian Høgsberg 13 years ago
parent e377822c64
commit 8ff691593c
  1. 7
      src/compositor-drm.c

@ -2050,8 +2050,13 @@ output_section_done(void *data)
output = malloc(sizeof *output);
if (!output)
if (!output || !output_name || !output_mode) {
free(output_name);
output_name = NULL;
free(output_mode);
output_mode = NULL;
return;
}
output->config = OUTPUT_CONFIG_INVALID;
output->name = output_name;

Loading…
Cancel
Save