Skip to content

Commit

Permalink
fix possible null pointer dereference (coverity-710882)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Aug 17, 2012
1 parent a7caac3 commit 17a64a9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/framework/mlt_properties.c
Expand Up @@ -483,6 +483,7 @@ int mlt_properties_pass( mlt_properties self, mlt_properties that, const char *p

static inline mlt_property mlt_properties_find( mlt_properties self, const char *name )
{
if ( !name ) return NULL;
property_list *list = self->local;
mlt_property value = NULL;
int key = generate_hash( name );
Expand Down

0 comments on commit 17a64a9

Please sign in to comment.