# HG changeset patch # User Matti Hamalainen # Date 1210548235 -10800 # Node ID 3476ae08cc99a4891def89e1ad67c1d9b2683cc8 # Parent 93c13b167f7480452db9c0c91cd38622bfe0e931 Increase used INI key string buffer sizes from 10 to 16 chars. diff -r 93c13b167f74 -r 3476ae08cc99 src/pls/pls.c --- a/src/pls/pls.c Sat May 10 19:06:58 2008 +0300 +++ b/src/pls/pls.c Mon May 12 02:23:55 2008 +0300 @@ -41,7 +41,7 @@ playlist_load_pls(const gchar * filename, gint pos) { guint i, count, added_count = 0; - gchar line_key[10], title_key[10]; + gchar line_key[16], title_key[16]; gchar *line, *title; Playlist *playlist = aud_playlist_get_active(); gchar *uri = NULL;