From 82611b04a06982df4398210881b8d45f9775a545 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 5 Dec 2013 12:48:39 +0100 Subject: Do not ignore result of asprintf to silence compiler warning --- src/ideviceinstaller.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 @@ run_again: /* 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); -- cgit v1.1-32-gdbae