Commit 1c54a6ae authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

audioscrobbler.c: Fix 21193. It should be reverted or at least the lock...

audioscrobbler.c: Fix 21193. It should be reverted or at least the lock shouldn't be held until it gets fixed.
parent 74ed2874
......@@ -1042,7 +1042,7 @@ static int ReadMetaData( intf_thread_t *p_this )
char *psz_meta;
#define ALLOC_ITEM_META( a, b ) \
psz_meta = input_item_Get##b( input_GetItem( p_input ) ) \
psz_meta = input_item_Get##b( input_GetItem( p_input ) ); \
if( psz_meta ) \
{ \
a = encode_URI_component( psz_meta ); \
......
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