diff options
| author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2011-10-11 09:17:51 +0100 |
|---|---|---|
| committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2011-10-11 09:17:51 +0100 |
| commit | b258a7d9c8f71669df3273127c076e722573f707 (patch) | |
| tree | ff6d87fffb1e1154da9dfadaddab8376eea2f96f /src/xine-utils | |
| parent | c7f63d6c87d5023ba65e3588bf37326e69b20430 (diff) | |
| parent | 61087cfdd20dfabcbc1da7fd11f85815f9a667aa (diff) | |
| download | xine-lib-b258a7d9c8f71669df3273127c076e722573f707.tar.gz xine-lib-b258a7d9c8f71669df3273127c076e722573f707.tar.bz2 | |
Merge from 1.1.
--HG--
rename : src/xine-engine/post.h => include/xine/post.h
rename : po/libxine1.pot => po/libxine2.pot
Diffstat (limited to 'src/xine-utils')
| -rw-r--r-- | src/xine-utils/xine_check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-utils/xine_check.c b/src/xine-utils/xine_check.c index 3c860493b..e6323dceb 100644 --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -93,7 +93,8 @@ set_hc_result(xine_health_check_t* hc, int state, const char *format, ...) } va_start(args, format); - vasprintf (&buf, format, args); + if (vasprintf (&buf, format, args) < 0) + buf = NULL; va_end(args); if (!buf) |
