Skip to content
Snippets Groups Projects
Commit 24534ed7 authored by Simon McVittie's avatar Simon McVittie
Browse files

graphics: Fix shadowing

parent 54aefc55
No related branches found
No related tags found
1 merge request!136Start merging pressure-vessel utility code into s-r-t
...@@ -3170,7 +3170,7 @@ _srt_list_modules_from_directory (gchar **envp, ...@@ -3170,7 +3170,7 @@ _srt_list_modules_from_directory (gchar **envp,
{ {
int exit_status = -1; int exit_status = -1;
GError *error = NULL; GError *error = NULL;
gchar *stderr = NULL; gchar *stderr_output = NULL;
gchar *output = NULL; gchar *output = NULL;
GDir *dir_iter = NULL; GDir *dir_iter = NULL;
GPtrArray *members = NULL; GPtrArray *members = NULL;
...@@ -3193,7 +3193,7 @@ _srt_list_modules_from_directory (gchar **envp, ...@@ -3193,7 +3193,7 @@ _srt_list_modules_from_directory (gchar **envp,
_srt_child_setup_unblock_signals, _srt_child_setup_unblock_signals,
NULL, /* user data */ NULL, /* user data */
&output, /* stdout */ &output, /* stdout */
&stderr, &stderr_output,
&exit_status, &exit_status,
&error)) &error))
{ {
...@@ -3294,7 +3294,7 @@ out: ...@@ -3294,7 +3294,7 @@ out:
g_dir_close (dir_iter); g_dir_close (dir_iter);
g_clear_pointer (&members, g_ptr_array_unref); g_clear_pointer (&members, g_ptr_array_unref);
g_free (output); g_free (output);
g_free (stderr); g_free (stderr_output);
g_clear_error (&error); g_clear_error (&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