fix 'zathura may be used uninittialized'

This commit is contained in:
Sebastian Ramacher 2011-10-16 23:10:20 +02:00
parent 2a35825247
commit ca885e5a27

View file

@ -48,7 +48,7 @@ zathura_init(int argc, char* argv[])
printf("Error parsing command line arguments: %s\n", error->message);
g_option_context_free(context);
g_error_free(error);
goto error_free;
return NULL;
}
g_option_context_free(context);