Commit dadf3d84 authored by Max Kellermann's avatar Max Kellermann

playlist/SoundCloud: implicit SoundCloudJsonData initialization

parent 941a9284
...@@ -103,10 +103,10 @@ static const char *const key_str[] = { ...@@ -103,10 +103,10 @@ static const char *const key_str[] = {
struct SoundCloudJsonData { struct SoundCloudJsonData {
int key; int key;
char* stream_url; char *stream_url = nullptr;
long duration; long duration;
char* title; char *title = nullptr;
int got_url; /* nesting level of last stream_url */ int got_url = 0; /* nesting level of last stream_url */
std::forward_list<DetachedSong> songs; std::forward_list<DetachedSong> songs;
}; };
...@@ -326,9 +326,6 @@ soundcloud_open_uri(const char *uri, Mutex &mutex, Cond &cond) ...@@ -326,9 +326,6 @@ soundcloud_open_uri(const char *uri, Mutex &mutex, Cond &cond)
} }
SoundCloudJsonData data; SoundCloudJsonData data;
data.got_url = 0;
data.title = nullptr;
data.stream_url = nullptr;
yajl_handle hand = yajl_alloc(&parse_callbacks, nullptr, &data); yajl_handle hand = yajl_alloc(&parse_callbacks, nullptr, &data);
int ret = soundcloud_parse_json(u, hand, mutex, cond); int ret = soundcloud_parse_json(u, hand, mutex, cond);
......
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