diff options
-rw-r--r-- | src/remembering.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remembering.c b/src/remembering.c index e51eb0e..c0d823a 100644 --- a/src/remembering.c +++ b/src/remembering.c @@ -377,12 +377,12 @@ main(int argc, char *argv[]) { int ret = EXIT_SUCCESS; char *profile_file = NULL; + char *profile_file_dup = NULL; if (!(profile_file = get_profile_file(profile, stderr))) { ret = EXIT_ERROR; goto cleanup; } - char *profile_file_dup = NULL; if (!(profile_file_dup = strdup(profile_file))) { perror("main() - strdup()"); ret = EXIT_ERROR; |