OSDN Git Service

Change sizeof(struct_type) to sizeof(variable).
authorRonald S. Bultje <rsbultje@gmail.com>
Sat, 21 Feb 2009 14:40:19 +0000 (14:40 +0000)
committerRonald S. Bultje <rsbultje@gmail.com>
Sat, 21 Feb 2009 14:40:19 +0000 (14:40 +0000)
Originally committed as revision 17474 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffserver.c
libavformat/rtsp.c

index 9236050..927a888 100644 (file)
@@ -2654,7 +2654,7 @@ static int rtsp_parse_request(HTTPContext *c)
     }
 
     /* parse each header line */
-    memset(header, 0, sizeof(RTSPHeader));
+    memset(header, 0, sizeof(*header));
     /* skip to next line */
     while (*p != '\n' && *p != '\0')
         p++;
index ac8a9e1..d991a9d 100644 (file)
@@ -748,7 +748,7 @@ static void rtsp_send_cmd(AVFormatContext *s,
     int content_length, line_count;
     unsigned char *content = NULL;
 
-    memset(reply, 0, sizeof(RTSPHeader));
+    memset(reply, 0, sizeof(*reply));
 
     rt->seq++;
     av_strlcpy(buf, cmd, sizeof(buf));