From: Zbigniew Jędrzejewski-Szmek Date: Wed, 28 Mar 2018 08:33:40 +0000 (+0200) Subject: shared/specifier: use realloc to free some memory after specifier expansion X-Git-Tag: v239~466^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bec8a68ceee4cbf5de4d7026e750f11130c33ccd;p=thirdparty%2Fsystemd.git shared/specifier: use realloc to free some memory after specifier expansion This is a separate commit only because it actually *increases* memory allocations: ==3256== total heap usage: 100,120 allocs, 100,120 frees, 13,097,140 bytes allocated to ==4690== total heap usage: 100,121 allocs, 100,121 frees, 14,198,329 bytes allocated Essentially, we do a little more work to reduce the memory footprint a bit. For a test where we just allocate the memory and drop it soon afterwards, this is not beneficial, but it should still be useful for a long running program. --- diff --git a/src/shared/specifier.c b/src/shared/specifier.c index c4a3ffd18cf..a602413cd54 100644 --- a/src/shared/specifier.c +++ b/src/shared/specifier.c @@ -102,11 +102,18 @@ int specifier_printf(const char *text, const Specifier table[], void *userdata, else *(t++) = *f; - /* if string ended with a stray %, also end with % */ + /* If string ended with a stray %, also end with % */ if (percent) *(t++) = '%'; + *(t++) = 0; + + /* Try to deallocate unused bytes, but don't sweat it too much */ + if ((size_t)(t - ret) < allocated) { + t = realloc(ret, t - ret); + if (t) + ret = t; + } - *t = 0; *_ret = TAKE_PTR(ret); return 0; }