summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-04-30 06:40:06 +0200
committerDan McGee <dan@archlinux.org>2012-04-30 06:40:06 +0200
commit5a9f5c60dae8d173e9e2f6da78499c046600e6ca (patch)
tree03026ea9b58078964d6b7c6be67378adf17d0610 /lib/libalpm/util.c
parent4d3170978711a91f1afe8ffef9dad9c2bc60585d (diff)
downloadpacman-5a9f5c60dae8d173e9e2f6da78499c046600e6ca.tar.gz
pacman-5a9f5c60dae8d173e9e2f6da78499c046600e6ca.tar.xz
Convert ALLOC_FAIL macro into a function
This path is rarely (read: never) taken in any normal run of the code, so injecting the fprintf() call everywhere with the macro is a bit overkill. Instead, add a lightweight _alpm_alloc_fail() function that gets called instead. This does have a reasonable effect on the size of the generated code; most places using the macros provided by util.c have their code size reduced. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index a392c773..996d7f4e 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -1247,6 +1247,11 @@ int _alpm_fnmatch(const void *pattern, const void *string)
return fnmatch(pattern, string, 0);
}
+void _alpm_alloc_fail(size_t size)
+{
+ fprintf(stderr, "alloc failure: could not allocate %zd bytes\n", size);
+}
+
#ifndef HAVE_STRNDUP
/* A quick and dirty implementation derived from glibc */
/** Determines the length of a fixed-size string.