Merge pull request #2406 from liujianqiang-niu/main

fix: Avoid wild pointers
This commit is contained in:
Luca Bruno 2021-07-28 08:26:45 +00:00 committed by GitHub
commit 5023278293
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -148,7 +148,6 @@ ostree_run (int argc,
OstreeCommand *commands, OstreeCommand *commands,
GError **res_error) GError **res_error)
{ {
OstreeCommand *command;
GError *error = NULL; GError *error = NULL;
GCancellable *cancellable = NULL; GCancellable *cancellable = NULL;
#ifndef BUILDOPT_TSAN #ifndef BUILDOPT_TSAN
@ -187,7 +186,7 @@ ostree_run (int argc,
argc = out; argc = out;
command = commands; OstreeCommand *command = commands;
while (command->name) while (command->name)
{ {
if (g_strcmp0 (command_name, command->name) == 0) if (g_strcmp0 (command_name, command->name) == 0)