diff options
| -rw-r--r-- | tools/idevicecrashreport.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/idevicecrashreport.c b/tools/idevicecrashreport.c index 8502938..4d7f41c 100644 --- a/tools/idevicecrashreport.c +++ b/tools/idevicecrashreport.c | |||
| @@ -144,7 +144,9 @@ static int afc_client_copy_and_remove_crash_reports(afc_client_t afc, const char | |||
| 144 | char* p = strrchr(list[k], '.'); | 144 | char* p = strrchr(list[k], '.'); |
| 145 | if (p != NULL && !strncmp(p, ".synced", 7)) { | 145 | if (p != NULL && !strncmp(p, ".synced", 7)) { |
| 146 | /* make sure to strip ".synced" extension as seen on iOS 5 */ | 146 | /* make sure to strip ".synced" extension as seen on iOS 5 */ |
| 147 | strncpy(((char*)target_filename) + host_directory_length, list[k], strlen(list[k]) - 7); | 147 | int newlen = strlen(list[k]) - 7; |
| 148 | strncpy(((char*)target_filename) + host_directory_length, list[k], newlen); | ||
| 149 | target_filename[host_directory_length + newlen] = '\0'; | ||
| 148 | } else { | 150 | } else { |
| 149 | strcpy(((char*)target_filename) + host_directory_length, list[k]); | 151 | strcpy(((char*)target_filename) + host_directory_length, list[k]); |
| 150 | } | 152 | } |
