Changeset 255 for trunk/lib/regfi.c


Ignore:
Timestamp:
06/13/11 15:15:08 (13 years ago)
Author:
tim
Message:

fixed error condition deadlock in regfi
prevented early garbage collection of hive file handles
fixed module imports under python3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/regfi.c

    r253 r255  
    15111511      regfi_log_add(REGFI_LOG_WARN, "Could not parse cell at offset"
    15121512                    " 0x%.8X while searching for root key.", cur_offset);
    1513       return NULL;
     1513      goto error_locked;
    15141514    }
    15151515
     
    15301530  }
    15311531
     1532  return NULL;
     1533
     1534 error_locked:
     1535  regfi_unlock(file, &file->cb_lock, "regfi_find_root_nk");
    15321536  return NULL;
    15331537}
Note: See TracChangeset for help on using the changeset viewer.