mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Suppress a compiler warning about the use of a potentially uninitialized
variable. It couldn't actually happen, though. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43477 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user