Browse Source

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
tags/v0.5
Stanislav Brabec Diego Biurrun 19 years ago
parent
commit
6308cacaf4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffserver.c

+ 1
- 1
ffserver.c 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;


Loading…
Cancel
Save