aboutsummaryrefslogtreecommitdiffstats
path: root/main/frame.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-22 14:04:46 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-22 14:04:46 +0000
commitf93b304b9cab3f049f69977443b3432ecc8d1cb6 (patch)
tree0096fa9d829afb7d5c5b83827e900d0d63b6e525 /main/frame.c
parent58b811b4d13a07c41b60fedd5fd8117b180e73ee (diff)
Merged revisions 43477 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r43477 | russell | 2006-09-22 10:02:58 -0400 (Fri, 22 Sep 2006) | 3 lines Suppress a compiler warning about the use of a potentially uninitialized variable. It couldn't actually happen, though. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43478 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/frame.c')
-rw-r--r--main/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/frame.c b/main/frame.c
index a95ba68ef..6a9b45b74 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -418,7 +418,7 @@ struct ast_frame *ast_frisolate(struct ast_frame *fr)
struct ast_frame *ast_frdup(const struct ast_frame *f)
{
struct ast_frame_cache *frames;
- struct ast_frame *out;
+ struct ast_frame *out = NULL;
int len, srclen = 0;
void *buf = NULL;