From ee246d0e0519c6aa7cb0aea17ea92c9a5c2dc16f Mon Sep 17 00:00:00 2001 From: kpfleming Date: Sun, 2 Nov 2008 23:56:13 +0000 Subject: import gcc 4.3.2 warning fixes from trunk, with a few changes specific to this branch git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@153710 f38db490-d61c-443f-a65b-d21fe96a405b --- main/utils.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'main/utils.c') diff --git a/main/utils.c b/main/utils.c index eff270fba..9a7a3acd4 100644 --- a/main/utils.c +++ b/main/utils.c @@ -1066,8 +1066,11 @@ int ast_pthread_create_stack(pthread_t *thread, pthread_attr_t *attr, void *(*st a->start_routine = start_routine; a->data = data; start_routine = dummy_start; - asprintf(&a->name, "%-20s started at [%5d] %s %s()", - start_fn, line, file, caller); + if (asprintf(&a->name, "%-20s started at [%5d] %s %s()", + start_fn, line, file, caller) < 0) { + ast_log(LOG_WARNING, "asprintf() failed: %s\n", strerror(errno)); + a->name = NULL; + } data = a; } #endif /* !LOW_MEMORY */ -- cgit v1.2.3