1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-12-26 19:10:25 +00:00

Fix: initialize covername

This commit is contained in:
jcorporation 2018-12-02 23:56:36 +00:00
parent 8234b342df
commit 2d214682f6

View File

@ -1776,7 +1776,7 @@ int mympd_put_current_song(char *buffer) {
struct mpd_song *song; struct mpd_song *song;
int len; int len;
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE); struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
char cover[500]; char cover[500] = "";
song = mpd_run_current_song(mpd.conn); song = mpd_run_current_song(mpd.conn);
if (song == NULL) { if (song == NULL) {
@ -1821,7 +1821,7 @@ int mympd_put_songdetails(char *buffer, char *uri) {
const struct mpd_song *song; const struct mpd_song *song;
int len; int len;
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE); struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
char cover[500]; char cover[500] = "";
len = json_printf(&out, "{type: song_details, data: {"); len = json_printf(&out, "{type: song_details, data: {");
if (!mpd_send_list_all_meta(mpd.conn, uri)) if (!mpd_send_list_all_meta(mpd.conn, uri))
@ -2137,7 +2137,7 @@ int mympd_put_songs_in_album(char *buffer, char *album, char *search, char *tag)
unsigned long entity_count = 0; unsigned long entity_count = 0;
unsigned long entities_returned = 0; unsigned long entities_returned = 0;
int len; int len;
char cover[500]; char cover[500] = "";
char *albumartist = NULL; char *albumartist = NULL;
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE); struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);