Do not ignore result of asprintf to silence compiler warning
diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c
index 1fc79bb..2af715e 100644
--- a/src/ideviceinstaller.c
+++ b/src/ideviceinstaller.c
@@ -805,7 +805,10 @@
 			/* upload developer app directory */
 			instproxy_client_options_add(client_opts, "PackageType", "Developer", NULL);
 
-			asprintf(&pkgname, "%s/%s", PKG_PATH, basename(appid));
+			if (asprintf(&pkgname, "%s/%s", PKG_PATH, basename(appid)) < 0) {
+				fprintf(stderr, "ERROR: Out of memory allocating pkgname!?\n");
+				goto leave_cleanup;
+			}
 
 			printf("Uploading %s package contents... ", basename(appid));
 			afc_upload_dir(afc, appid, pkgname);