diff options
author | Max Kellermann <max@duempel.org> | 2009-09-24 10:04:24 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-09-24 10:04:24 +0200 |
commit | d657be33baa1619cc488beadae3e48872548a7c7 (patch) | |
tree | 6e42b458e198e6d7e29878f52800647dd2b2507b /src | |
parent | a86f9b80357e30823ce9d3d486adcf4cd4e781dc (diff) | |
download | mpd-d657be33baa1619cc488beadae3e48872548a7c7.tar.gz mpd-d657be33baa1619cc488beadae3e48872548a7c7.tar.xz mpd-d657be33baa1619cc488beadae3e48872548a7c7.zip |
decoder/sidplay: pass GError** to g_file_get_contents()
The error handler dereferences GError*, but did not retrieve that
object from g_file_get_contents().
Diffstat (limited to 'src')
-rw-r--r-- | src/decoder/sidplay_plugin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decoder/sidplay_plugin.cxx b/src/decoder/sidplay_plugin.cxx index 5228dbe89..84afd7add 100644 --- a/src/decoder/sidplay_plugin.cxx +++ b/src/decoder/sidplay_plugin.cxx @@ -52,7 +52,8 @@ sidplay_init(const struct config_param *param) songlength_file=config_get_block_string(param, "songlength_database", NULL); if(songlength_file) { - if(g_file_get_contents(songlength_file, &songlen_data, &songlen_data_size, NULL)) { + if (g_file_get_contents(songlength_file, &songlen_data, + &songlen_data_size, &err)) { /* replace any ; comment characters with # */ for(int i=0; i<songlen_data_size; i++) if(songlen_data[i]==';') songlen_data[i]='#'; |