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

*Ahem* whistles

parent 72b30654
...@@ -353,7 +353,7 @@ static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name ) ...@@ -353,7 +353,7 @@ static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name )
static inline char *__var_GetNonEmptyString( vlc_object_t *obj, const char *name ) static inline char *__var_GetNonEmptyString( vlc_object_t *obj, const char *name )
{ {
vlc_value_t val; vlc_value_t val;
if (!__var_Get (obj, name, &val)) if (__var_Get (obj, name, &val))
return NULL; return NULL;
if (*val.psz_string) if (*val.psz_string)
return val.psz_string; return val.psz_string;
......
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