1
0
Fork 0
forked from len0rd/rockbox

Yet another crash bug fixed.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6662 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2005-06-10 21:46:59 +00:00
parent cd56d0fba5
commit d480fdc721

View file

@ -1254,7 +1254,7 @@ void audio_stop(void)
playing = false; playing = false;
paused = false; paused = false;
ci.stop_codec = true; ci.stop_codec = true;
if (current_fd) { if (current_fd > 0) {
close(current_fd); close(current_fd);
current_fd = -1; current_fd = -1;
} }