summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh1
-rw-r--r--src/idevicerestore.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index d97d1ee..17e4d21 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,3 +2,4 @@
aclocal
autoconf
automake
+./configure
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index 1155382..be8c9c7 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -851,7 +851,6 @@ int get_tss_data_by_path(plist_t tss, const char* path, char** pname, char** pbl
plist_t blob_node = plist_dict_get_item(tss_entry, "Blob");
if (!blob_node || plist_get_node_type(blob_node) != PLIST_DATA) {
error("ERROR: Unable to find TSS blob node in entry %s\n", key);
- free(path);
return -1;
}
plist_get_data_val(blob_node, &blob, &blob_size);