]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Avoid use of C99 for-scope declarations to fix issue #729.
authorJoerg Sonnenberger <joerg@bec.de>
Wed, 22 Jun 2016 21:09:27 +0000 (23:09 +0200)
committerJoerg Sonnenberger <joerg@bec.de>
Wed, 22 Jun 2016 21:09:27 +0000 (23:09 +0200)
libarchive/test/test_write_format_gnutar_filenames.c

index 38b4ca9d7fd7c7c3f6aa2c292a64e050c8dbb32d..26457d3575008af713631b209870b464d382b4db 100644 (file)
@@ -42,6 +42,7 @@ DEFINE_TEST(test_write_format_gnutar_filenames)
        struct archive_entry *ae, *template;
        struct archive *a;
        size_t used;
+       int i;
 
        buff = malloc(buffsize); /* million bytes of work area */
        assert(buff != NULL);
@@ -55,7 +56,7 @@ DEFINE_TEST(test_write_format_gnutar_filenames)
        archive_entry_set_mode(template, S_IFREG | 0755);
        archive_entry_set_size(template, 8);
 
-       for (int i = 0; i < 2000; ++i) {
+       for (i = 0; i < 2000; ++i) {
                filename[i] = 'a';
                filename[i + 1] = '\0';
                archive_entry_copy_pathname(template, filename);
@@ -97,6 +98,7 @@ DEFINE_TEST(test_write_format_gnutar_linknames)
        struct archive_entry *ae, *template;
        struct archive *a;
        size_t used;
+       int i;
 
        buff = malloc(buffsize); /* million bytes of work area */
        assert(buff != NULL);
@@ -110,7 +112,7 @@ DEFINE_TEST(test_write_format_gnutar_linknames)
        archive_entry_set_mode(template, S_IFLNK | 0755);
        archive_entry_copy_pathname(template, "link");
 
-       for (int i = 0; i < 2000; ++i) {
+       for (i = 0; i < 2000; ++i) {
                filename[i] = 'a';
                filename[i + 1] = '\0';
                archive_entry_copy_symlink(template, filename);