From 60592edde46e26f9baad650538d96ca5ef45c603 Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 7 Aug 2010 20:03:05 +0400 Subject: audio/sdl: return on error Signed-off-by: malc --- audio/sdlaudio.c | 1 + 1 file changed, 1 insertion(+) (limited to 'audio') diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c index 0f23fd372a..b74dcfa734 100644 --- a/audio/sdlaudio.c +++ b/audio/sdlaudio.c @@ -191,6 +191,7 @@ static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt) err = sigfillset (&new); if (err) { dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno)); + return -1; } err = pthread_sigmask (SIG_BLOCK, &new, &old); if (err) { -- cgit v1.2.1