Remove a redundant NULL check

This commit is contained in:
Matthias Clasen 2011-06-14 20:36:37 -04:00
parent 28008138c3
commit 9b68d9892a

View File

@ -493,9 +493,8 @@ g_module_open (const gchar *file_name,
{ {
gchar *error; gchar *error;
error = g_strconcat ("GModule (", error = g_strconcat ("GModule (", file_name, ") ",
file_name ? file_name : "NULL", "initialization check failed: ",
") initialization check failed: ",
check_failed, NULL); check_failed, NULL);
g_module_close (module); g_module_close (module);
module = NULL; module = NULL;