summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2015-12-18 21:01:01 +0100
committerGravatar Nikias Bassen2015-12-18 21:01:01 +0100
commitcae19fa6cf28074b51ce421d64142f7ec1e1dde2 (patch)
treea78be394887f2350f0e5eddc2d4b5890163c840d /tools
parent2203f4cba9ddaacee1ad702b7948da0e59d33497 (diff)
downloadlibimobiledevice-cae19fa6cf28074b51ce421d64142f7ec1e1dde2.tar.gz
libimobiledevice-cae19fa6cf28074b51ce421d64142f7ec1e1dde2.tar.bz2
tools: idevicecrashreport: Propertly initialize buffer used to check for ping message
Diffstat (limited to 'tools')
-rw-r--r--tools/idevicecrashreport.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/idevicecrashreport.c b/tools/idevicecrashreport.c
index 8c04fd1..8502938 100644
--- a/tools/idevicecrashreport.c
+++ b/tools/idevicecrashreport.c
@@ -404,6 +404,7 @@ int main(int argc, char* argv[]) {
/* read "ping" message which indicates the crash logs have been moved to a safe harbor */
char *ping = malloc(4);
+ memset(ping, '\0', 4);
int attempts = 0;
while ((strncmp(ping, "ping", 4) != 0) && (attempts < 10)) {
uint32_t bytes = 0;