Commit f9740938 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix NULL deref (CID 14)

parent bd6877f9
...@@ -247,9 +247,9 @@ mediacontrol_PlaylistSeq__free( mediacontrol_PlaylistSeq* ps ) ...@@ -247,9 +247,9 @@ mediacontrol_PlaylistSeq__free( mediacontrol_PlaylistSeq* ps )
int i; int i;
for( i = 0 ; i < ps->size ; i++ ) for( i = 0 ; i < ps->size ; i++ )
free( ps->data[i] ); free( ps->data[i] );
}
free( ps->data ); free( ps->data );
free( ps ); free( ps );
}
} }
mediacontrol_Exception* mediacontrol_Exception*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment