forked from FFmpeg/FFmpeg
Fix warning:
ffserver.c:4303: warning: 'acl.next' is used uninitialized in this function patch by Stanislav Brabec, sbrabec suse cz Originally committed as revision 8573 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
beef9ba9e2
commit
6308cacaf4
1 changed files with 1 additions and 1 deletions
|
@ -4296,8 +4296,8 @@ static int parse_ffconfig(const char *filename)
|
|||
IPAddressACL *nacl = (IPAddressACL *) av_mallocz(sizeof(*nacl));
|
||||
IPAddressACL **naclp = 0;
|
||||
|
||||
acl.next = 0;
|
||||
*nacl = acl;
|
||||
nacl->next = 0;
|
||||
|
||||
if (stream) {
|
||||
naclp = &stream->acl;
|
||||
|
|
Loading…
Add table
Reference in a new issue