summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/idevicebackup2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index 34dfe9e..30ec272 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -693,10 +693,12 @@ static void mb2_handle_send_files(plist_t message, const char *backup_dir)
693 continue; 693 continue;
694 694
695 if (mb2_handle_send_file(backup_dir, str, &errplist) < 0) { 695 if (mb2_handle_send_file(backup_dir, str, &errplist) < 0) {
696 free(str);
696 //printf("Error when sending file '%s' to device\n", str); 697 //printf("Error when sending file '%s' to device\n", str);
697 // TODO: perhaps we can continue, we've got a multi status response?! 698 // TODO: perhaps we can continue, we've got a multi status response?!
698 break; 699 break;
699 } 700 }
701 free(str);
700 } 702 }
701 703
702 /* send terminating 0 dword */ 704 /* send terminating 0 dword */