]> git.sesse.net Git - vlc/commitdiff
- check size to avoid realloc(0)
authorCyril Deguet <asmax@videolan.org>
Wed, 15 May 2002 15:46:34 +0000 (15:46 +0000)
committerCyril Deguet <asmax@videolan.org>
Wed, 15 May 2002 15:46:34 +0000 (15:46 +0000)
src/input/input_dec.c
src/input/input_programs.c

index cc0af10e516eff2ab3b61294d9fb5ffb044af438..f4d601e2875539e83ccf6b9fb976648da3706e75 100644 (file)
@@ -2,7 +2,7 @@
  * input_dec.c: Functions for the management of decoders
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: input_dec.c,v 1.34 2002/05/14 21:23:44 massiot Exp $
+ * $Id: input_dec.c,v 1.35 2002/05/15 15:46:34 asmax Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -224,17 +224,29 @@ static decoder_config_t * CreateDecoderConfig( input_thread_t * p_input,
 
     /* Select a new ES */
     p_input->stream.i_selected_es_number++;
-    p_input->stream.pp_selected_es = realloc(
-                                       p_input->stream.pp_selected_es,
-                                       p_input->stream.i_selected_es_number
-                                        * sizeof(es_descriptor_t *) );
-    if( p_input->stream.pp_selected_es == NULL )
+    if( p_input->stream.i_selected_es_number > 0 )
     {
-        intf_ErrMsg( "Unable to realloc memory" );
+        p_input->stream.pp_selected_es = realloc(
+                                          p_input->stream.pp_selected_es,
+                                          p_input->stream.i_selected_es_number
+                                           * sizeof(es_descriptor_t *) );
+        if( p_input->stream.pp_selected_es == NULL )
+        {
+            intf_ErrMsg( "Unable to realloc memory" );
+            free( p_config->p_decoder_fifo );
+            free( p_config );
+            return NULL;
+        }
+    }
+    else
+    { 
+        intf_ErrMsg( "realloc(0) (p_input->stream.i_selected_es_number "
+                     "corrupted?)" );
         free( p_config->p_decoder_fifo );
         free( p_config );
         return NULL;
     }
+    
     p_input->stream.pp_selected_es[p_input->stream.i_selected_es_number - 1]
             = p_es;
 
index f6ed6bb9c9757998d52a62a0f2fc6e4879eaaee8..d91498abd950bcc9b93179e83314833e0fee6ac5 100644 (file)
@@ -2,7 +2,7 @@
  * input_programs.c: es_descriptor_t, pgrm_descriptor_t management
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: input_programs.c,v 1.85 2002/05/13 21:55:30 fenrir Exp $
+ * $Id: input_programs.c,v 1.86 2002/05/15 15:46:34 asmax Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -142,15 +142,22 @@ pgrm_descriptor_t * input_AddProgram( input_thread_t * p_input,
 
     /* Add an entry to the list of program associated with the stream */
     p_input->stream.i_pgrm_number++;
-    p_input->stream.pp_programs = realloc( p_input->stream.pp_programs,
-                                           p_input->stream.i_pgrm_number
-                                            * sizeof(pgrm_descriptor_t *) );
-    if( p_input->stream.pp_programs == NULL )
+    if( p_input->stream.i_pgrm_number > 0 )
     {
-        intf_ErrMsg( "Unable to realloc memory in input_AddProgram" );
+        p_input->stream.pp_programs = realloc( p_input->stream.pp_programs,
+                                               p_input->stream.i_pgrm_number
+                                               * sizeof(pgrm_descriptor_t *) );
+        if( p_input->stream.pp_programs == NULL )
+        {
+            intf_ErrMsg( "Unable to realloc memory in input_AddProgram" );
+            return( NULL );
+        }
+    }
+    else {
+        intf_ErrMsg( "realloc(0) (p_input->stream.i_pgrm_number corrupted ?)");
         return( NULL );
     }
-    
+        
     /* Allocate the structure to store this description */
     p_input->stream.pp_programs[i_pgrm_index] =
                                         malloc( sizeof(pgrm_descriptor_t) );
@@ -229,14 +236,21 @@ void input_DelProgram( input_thread_t * p_input, pgrm_descriptor_t * p_pgrm )
 
     p_input->stream.pp_programs[i_pgrm_index] =
         p_input->stream.pp_programs[p_input->stream.i_pgrm_number];
-    p_input->stream.pp_programs = realloc( p_input->stream.pp_programs,
-                                           p_input->stream.i_pgrm_number
-                                            * sizeof(pgrm_descriptor_t *) );
+    if( p_input->stream.i_pgrm_number > 0 ) 
+    {
+        p_input->stream.pp_programs = realloc( p_input->stream.pp_programs,
+                                               p_input->stream.i_pgrm_number
+                                               * sizeof(pgrm_descriptor_t *) );
+        if( p_input->stream.pp_programs == NULL )
+        {
+            intf_ErrMsg( "input error: unable to realloc program list"
+                         " in input_DelProgram" );
+        }
 
-    if( p_input->stream.i_pgrm_number && p_input->stream.pp_programs == NULL)
+    }
+    else
     {
-        intf_ErrMsg( "input error: unable to realloc program list"
-                     " in input_DelProgram" );
+        free( p_input->stream.pp_programs );
     }
 
     /* Free the description of this program */
@@ -255,12 +269,20 @@ input_area_t * input_AddArea( input_thread_t * p_input )
 
     /* Add an entry to the list of program associated with the stream */
     p_input->stream.i_area_nb++;
-    p_input->stream.pp_areas = realloc( p_input->stream.pp_areas,
-                                        p_input->stream.i_area_nb
+    if( p_input->stream.i_area_nb > 0 )
+    {
+        p_input->stream.pp_areas = realloc( p_input->stream.pp_areas,
+                                            p_input->stream.i_area_nb
                                             * sizeof(input_area_t *) );
-    if( p_input->stream.pp_areas == NULL )
+        if( p_input->stream.pp_areas == NULL )
+        {
+            intf_ErrMsg( "Unable to realloc memory in input_AddArea" );
+            return( NULL );
+        }
+    }
+    else
     {
-        intf_ErrMsg( "Unable to realloc memory in input_AddArea" );
+        intf_ErrMsg( "realloc(0) (p_input->stream.i_area_nb corrupted ?)");
         return( NULL );
     }
     
@@ -408,14 +430,21 @@ void input_DelArea( input_thread_t * p_input, input_area_t * p_area )
 
     p_input->stream.pp_areas[i_area_index] =
         p_input->stream.pp_areas[p_input->stream.i_area_nb];
-    p_input->stream.pp_areas = realloc( p_input->stream.pp_areas,
-                                           p_input->stream.i_area_nb
+    if( p_input->stream.i_area_nb > 0 )
+    {
+        p_input->stream.pp_areas = realloc( p_input->stream.pp_areas,
+                                            p_input->stream.i_area_nb
                                             * sizeof(input_area_t *) );
 
-    if( p_input->stream.i_area_nb && p_input->stream.pp_areas == NULL)
+        if( p_input->stream.pp_areas == NULL )
+        {
+            intf_ErrMsg( "input error: unable to realloc area list"
+                         " in input_DelArea" );
+        }
+    }
+    else
     {
-        intf_ErrMsg( "input error: unable to realloc area list"
-                     " in input_DelArea" );
+        free( p_input->stream.pp_areas );
     }
 
     /* Free the description of this area */
@@ -461,12 +490,20 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
         return( NULL);
     }
     p_input->stream.i_es_number++;
-    p_input->stream.pp_es = realloc( p_input->stream.pp_es,
-                                     p_input->stream.i_es_number
-                                      * sizeof(es_descriptor_t *) );
-    if( p_input->stream.pp_es == NULL )
+    if( p_input->stream.i_es_number > 0 )
     {
-        intf_ErrMsg( "Unable to realloc memory in input_AddES" );
+        p_input->stream.pp_es = realloc( p_input->stream.pp_es,
+                                         p_input->stream.i_es_number
+                                          * sizeof(es_descriptor_t *) );
+        if( p_input->stream.pp_es == NULL )
+        {
+            intf_ErrMsg( "Unable to realloc memory in input_AddES" );
+            return( NULL );
+        }
+    }
+    else
+    {
+        intf_ErrMsg( "realloc(0) (p_input->stream.pp_es_number corrupted ?)");
         return( NULL );
     }
     p_input->stream.pp_es[p_input->stream.i_es_number - 1] = p_es;
@@ -499,12 +536,20 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
     if( p_pgrm )
     {
         p_pgrm->i_es_number++;
-        p_pgrm->pp_es = realloc( p_pgrm->pp_es,
-                                 p_pgrm->i_es_number
-                                  * sizeof(es_descriptor_t *) );
-        if( p_pgrm->pp_es == NULL )
+        if( p_pgrm->i_es_number > 0 )
         {
-            intf_ErrMsg( "Unable to realloc memory in input_AddES" );
+            p_pgrm->pp_es = realloc( p_pgrm->pp_es,
+                                     p_pgrm->i_es_number
+                                      * sizeof(es_descriptor_t *) );
+            if( p_pgrm->pp_es == NULL )
+            {
+                intf_ErrMsg( "Unable to realloc memory in input_AddES" );
+                return( NULL );
+            }
+        }
+        else
+        {
+            intf_ErrMsg( "realloc(0) (p_pgrm->i_es_number corrupted ?)");
             return( NULL );
         }
         p_pgrm->pp_es[p_pgrm->i_es_number - 1] = p_es;
@@ -545,12 +590,20 @@ void input_DelES( input_thread_t * p_input, es_descriptor_t * p_es )
             {
                 p_pgrm->i_es_number--;
                 p_pgrm->pp_es[i_index] = p_pgrm->pp_es[p_pgrm->i_es_number];
-                p_pgrm->pp_es = realloc( p_pgrm->pp_es,
-                                         p_pgrm->i_es_number
-                                          * sizeof(es_descriptor_t *));
-                if( p_pgrm->i_es_number && p_pgrm->pp_es == NULL )
+                if( p_pgrm->i_es_number > 0 )
+                {
+                    p_pgrm->pp_es = realloc( p_pgrm->pp_es,
+                                             p_pgrm->i_es_number
+                                              * sizeof(es_descriptor_t *));
+                    if( p_pgrm->pp_es == NULL )
+                    {
+                        intf_ErrMsg( "Unable to realloc memory in "
+                                     "input_DelES" );
+                    }
+                }
+                else
                 {
-                    intf_ErrMsg( "Unable to realloc memory in input_DelES" );
+                    free( p_pgrm->pp_es );
                 }
                 break;
             }
@@ -576,12 +629,19 @@ void input_DelES( input_thread_t * p_input, es_descriptor_t * p_es )
     p_input->stream.i_es_number--;
     p_input->stream.pp_es[i_es_index] =
                     p_input->stream.pp_es[p_input->stream.i_es_number];
-    p_input->stream.pp_es = realloc( p_input->stream.pp_es,
-                                     p_input->stream.i_es_number
-                                      * sizeof(es_descriptor_t *));
-    if( p_input->stream.i_es_number && p_input->stream.pp_es == NULL )
+    if( p_input->stream.i_es_number > 0 )
+    {
+        p_input->stream.pp_es = realloc( p_input->stream.pp_es,
+                                         p_input->stream.i_es_number
+                                          * sizeof(es_descriptor_t *));
+        if( p_input->stream.pp_es == NULL )
+        {
+            intf_ErrMsg( "Unable to realloc memory in input_DelES" );
+        }
+    }
+    else
     {
-        intf_ErrMsg( "Unable to realloc memory in input_DelES" );
+        free( p_input->stream.pp_es );
     }
     
 }
@@ -696,15 +756,22 @@ int input_UnselectES( input_thread_t * p_input, es_descriptor_t * p_es )
         p_input->stream.pp_selected_es[i_index] = 
           p_input->stream.pp_selected_es[p_input->stream.i_selected_es_number];
 
-        p_input->stream.pp_selected_es = realloc(
+        if( p_input->stream.i_selected_es_number > 0 )
+        {
+            p_input->stream.pp_selected_es = realloc(
                                            p_input->stream.pp_selected_es,
                                            p_input->stream.i_selected_es_number
-                                            * sizeof(es_descriptor_t *) );
-
-        if( p_input->stream.pp_selected_es == NULL )
+                                           * sizeof(es_descriptor_t *) );
+            if( p_input->stream.pp_selected_es == NULL )
+            {
+                intf_ErrMsg( "Unable to realloc memory in input_UnselectES" );
+                return( -1 );
+            }
+        }
+        else
         {
-            intf_WarnMsg( 4, "input: no more selected ES in input_UnselectES" );
-            return( 1 );
+            free( p_input->stream.pp_selected_es );   
+            intf_WarnMsg( 4, "input: no more selected ES in input_UnselectES" );            return( 1 );
         }
     }