From 6388fedd6303acee8d0cf10455095ba2dd678c90 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 11 Jul 2013 09:53:51 +0200 Subject: use sizeof() --- mpd-notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpd-notification.c b/mpd-notification.c index 416c019..6baa627 100644 --- a/mpd-notification.c +++ b/mpd-notification.c @@ -84,7 +84,7 @@ int main(int argc, char ** argv) { if ((album = g_markup_escape_text(mpd_song_get_tag(song, MPD_TAG_ALBUM, 0), -1)) == NULL) album = TEXT_UNKNOWN; - notifystr = malloc(strlen(TEXT_PLAY) + strlen(title) + strlen(artist) + strlen(album)); + notifystr = malloc(sizeof(TEXT_PLAY) + strlen(title) + strlen(artist) + strlen(album)); sprintf(notifystr, TEXT_PLAY, title, artist, album); mpd_song_free(song); -- cgit v1.2.3-54-g00ecf