Explorar el Código

Fix bug: statement before decl.

Paul Eggert hace 23 años
padre
commit
8267e6ed02
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/extract.c

+ 2 - 1
src/extract.c

@@ -549,10 +549,11 @@ apply_nonancestor_delayed_set_stat (char const *file_name, bool after_symlinks)
     {
       struct delayed_set_stat *data = delayed_set_stat_head;
       bool skip_this_one = 0;
-      check_for_renamed_directories |= data->after_symlinks;
       struct stat st;
       struct stat const *current_stat_info = 0;
 
+      check_for_renamed_directories |= data->after_symlinks;
+
       if (after_symlinks < data->after_symlinks
 	  || (data->file_name_len < file_name_len
 	      && file_name[data->file_name_len]