Author: andoma
Date: Thu Apr  3 08:38:34 2008
New Revision: 2071

Log:
use sizeof(var) instead of sizeof(type)



Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c   (original)
+++ aac/aac.c   Thu Apr  3 08:38:34 2008
@@ -643,7 +643,7 @@ static int program_config_element(AACCon
     program_config_struct pcs;
     int i, num_front, num_side, num_back, num_lfe, num_assoc_data, num_cc;
 
-    memset(&pcs, 0, sizeof(program_config_struct));
+    memset(&pcs, 0, sizeof(pcs));
 
     skip_bits(gb, 2);  // object_type
 
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to