mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-02 17:26:17 +01:00
Remove a redundant NULL check
This commit is contained in:
parent
28008138c3
commit
9b68d9892a
@ -493,9 +493,8 @@ g_module_open (const gchar *file_name,
|
||||
{
|
||||
gchar *error;
|
||||
|
||||
error = g_strconcat ("GModule (",
|
||||
file_name ? file_name : "NULL",
|
||||
") initialization check failed: ",
|
||||
error = g_strconcat ("GModule (", file_name, ") ",
|
||||
"initialization check failed: ",
|
||||
check_failed, NULL);
|
||||
g_module_close (module);
|
||||
module = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user