diff options
Diffstat (limited to 'src/conda.c')
-rw-r--r-- | src/conda.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conda.c b/src/conda.c index 87b32d4..f6d1420 100644 --- a/src/conda.c +++ b/src/conda.c @@ -185,12 +185,12 @@ int conda_check_required() { } } if (found < (sizeof(tools) / sizeof(*tools)) - 1) { - guard_free(cmd_out) - guard_strlist_free(result) + guard_free(cmd_out); + guard_strlist_free(result); return 1; } - guard_free(cmd_out) - guard_strlist_free(result) + guard_free(cmd_out); + guard_strlist_free(result); } else { msg(OMC_MSG_ERROR | OMC_MSG_L2, "The base package requirement check could not be performed\n"); return 2; |