summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2009-09-12 19:59:19 +0200
committerGravatar Martin Szulecki2009-09-12 19:59:19 +0200
commitc8b8e947c0a0085ce21a04028b176793b4ad0b69 (patch)
tree371657a8b8b7d1e3c0977cf3d54618bf6543d983 /src
parenta4a0e5a4449cea17c6030555f2c1a9669611d871 (diff)
downloadlibimobiledevice-c8b8e947c0a0085ce21a04028b176793b4ad0b69.tar.gz
libimobiledevice-c8b8e947c0a0085ce21a04028b176793b4ad0b69.tar.bz2
Use correct usbmuxd function to free device list
Diffstat (limited to 'src')
-rw-r--r--src/iphone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iphone.c b/src/iphone.c
index 80e3b26..586b3bc 100644
--- a/src/iphone.c
+++ b/src/iphone.c
@@ -111,7 +111,7 @@ iphone_error_t iphone_get_device_list(char ***devices, int *count)
newlist[newcount++] = strdup(dev_list[i].uuid);
*devices = newlist;
}
- usbmuxd_free_device_list(dev_list);
+ usbmuxd_device_list_free(&dev_list);
*count = newcount;
newlist = realloc(*devices, sizeof(char*) * (newcount+1));