diff options
author | rbuj <[email protected]> | 2020-12-21 16:38:28 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-07 18:37:10 +0100 |
commit | 98759f7bed3768ef150dcd41f97f87cbb84be8b1 (patch) | |
tree | 9d36f1a67229a67a117c1f9583dafbe9d1b55a8b /src/fr-archive.c | |
parent | facddb5353b18d19c8a5b4f62b11ac0f6e666724 (diff) | |
download | engrampa-98759f7bed3768ef150dcd41f97f87cbb84be8b1.tar.bz2 engrampa-98759f7bed3768ef150dcd41f97f87cbb84be8b1.tar.xz |
Remove cppcheck warnings about the variable scope can be reduced
Diffstat (limited to 'src/fr-archive.c')
-rw-r--r-- | src/fr-archive.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fr-archive.c b/src/fr-archive.c index 029d6fb..3d53f58 100644 --- a/src/fr-archive.c +++ b/src/fr-archive.c @@ -3335,10 +3335,11 @@ get_extract_here_destination (GFile *file, char *desired_destination; char *destination = NULL; int n = 1; - GFile *directory; desired_destination = get_desired_destination_for_archive (file); do { + GFile *directory; + *error = NULL; g_free (destination); |