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:
Stanislav Brabec 2007-03-31 16:36:56 +00:00 committed by Diego Biurrun
parent beef9ba9e2
commit 6308cacaf4

View File

@ -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;