diff options
| author | 2013-12-05 12:48:39 +0100 | |
|---|---|---|
| committer | 2013-12-05 12:48:39 +0100 | |
| commit | 82611b04a06982df4398210881b8d45f9775a545 (patch) | |
| tree | 930c88104cfddcac45da246a703a12a355efff78 | |
| parent | f88267edef5ff6fea7863ded77ff32409dc0b924 (diff) | |
| download | ideviceinstaller-82611b04a06982df4398210881b8d45f9775a545.tar.gz ideviceinstaller-82611b04a06982df4398210881b8d45f9775a545.tar.bz2 | |
Do not ignore result of asprintf to silence compiler warning
| -rw-r--r-- | src/ideviceinstaller.c | 5 |
1 files changed, 4 insertions, 1 deletions
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: | |||
| 805 | /* upload developer app directory */ | 805 | /* upload developer app directory */ |
| 806 | instproxy_client_options_add(client_opts, "PackageType", "Developer", NULL); | 806 | instproxy_client_options_add(client_opts, "PackageType", "Developer", NULL); |
| 807 | 807 | ||
| 808 | asprintf(&pkgname, "%s/%s", PKG_PATH, basename(appid)); | 808 | if (asprintf(&pkgname, "%s/%s", PKG_PATH, basename(appid)) < 0) { |
| 809 | fprintf(stderr, "ERROR: Out of memory allocating pkgname!?\n"); | ||
| 810 | goto leave_cleanup; | ||
| 811 | } | ||
| 809 | 812 | ||
| 810 | printf("Uploading %s package contents... ", basename(appid)); | 813 | printf("Uploading %s package contents... ", basename(appid)); |
| 811 | afc_upload_dir(afc, appid, pkgname); | 814 | afc_upload_dir(afc, appid, pkgname); |
