From d99b677f3501944b7aaf82375ef62a88e5fa3933 Mon Sep 17 00:00:00 2001 From: russell Date: Wed, 10 May 2006 13:22:15 +0000 Subject: 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 --- dsp.c | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'dsp.c') diff --git a/dsp.c b/dsp.c index a11f272c8..9adddaad1 100644 --- a/dsp.c +++ b/dsp.c @@ -1444,19 +1444,13 @@ struct ast_frame *ast_dsp_process(struct ast_channel *chan, struct ast_dsp *dsp, len = af->datalen / 2; break; case AST_FORMAT_ULAW: - if (!(shortdata = alloca(af->datalen * 2))) { - ast_log(LOG_WARNING, "Unable to allocate stack space for data: %s\n", strerror(errno)); - return af; - } - for (x=0;xdatalen * 2); + for (x = 0;x < len; x++) shortdata[x] = AST_MULAW(odata[x]); break; case AST_FORMAT_ALAW: - if (!(shortdata = alloca(af->datalen * 2))) { - ast_log(LOG_WARNING, "Unable to allocate stack space for data: %s\n", strerror(errno)); - return af; - } - for (x=0;xdatalen * 2); + for (x = 0; x < len; x++) shortdata[x] = AST_ALAW(odata[x]); break; default: -- cgit v1.2.3