aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-10 13:22:15 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-10 13:22:15 +0000
commitd99b677f3501944b7aaf82375ef62a88e5fa3933 (patch)
tree167bf7a9b6b330883dc9bf865672132658710ffd /include
parenta6b2177d50659d049694ca79f6cbe00f54dd0a93 (diff)
remove almost all of the checks of the result from ast_strdupa() or alloca().
As it turns out, all of these checks were useless, because alloca will never return NULL. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@26451 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/utils.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h
index 134caa8dc..4f563be54 100644
--- a/include/asterisk/utils.h
+++ b/include/asterisk/utils.h
@@ -437,12 +437,7 @@ char * __attribute__((malloc)) _ast_strndup(const char *str, size_t len, const c
const char *__old = (s); \
size_t __len = strlen(__old) + 1; \
char *__new = __builtin_alloca(__len); \
- if (__builtin_expect(!__new, 0)) \
- ast_log(LOG_ERROR, "Stack Allocation Error in" \
- "function '%s' at line '%d' of '%s'!\n", \
- __PRETTY_FUNCTION__, __LINE__, __FILE__); \
- else \
- memcpy (__new, __old, __len); \
+ memcpy (__new, __old, __len); \
__new; \
}))
#endif