summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2013-01-16 18:37:23 +0100
committerBlue Swirl <blauwirbel@gmail.com>2013-01-19 10:24:43 +0000
commite4ada482420175bc17d6ccb9f2af0e769da78e01 (patch)
tree957c6756ff906ba4a5927479e714228512df7e1b /util
parent0e7a75929353b04bd2fce1be8640226883b42a10 (diff)
downloadhqemu-e4ada482420175bc17d6ccb9f2af0e769da78e01.zip
hqemu-e4ada482420175bc17d6ccb9f2af0e769da78e01.tar.gz
Replace non-portable asprintf by g_strdup_printf
g_strdup_printf already handles OOM errors, so some error handling in QEMU code can be removed. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'util')
-rw-r--r--util/path.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/util/path.c b/util/path.c
index 4c5b0f6..f0c6962 100644
--- a/util/path.c
+++ b/util/path.c
@@ -47,10 +47,7 @@ static struct pathelem *new_entry(const char *root,
{
struct pathelem *new = malloc(sizeof(*new));
new->name = strdup(name);
- if (asprintf(&new->pathname, "%s/%s", root, name) == -1) {
- printf("Cannot allocate memory\n");
- exit(1);
- }
+ new->pathname = g_strdup_printf("%s/%s", root, name);
new->num_entries = 0;
return new;
}
OpenPOWER on IntegriCloud