git: 9front

Download patch

ref: 85db0ea45ba0a5669c9bda095a188473d34cbb80
parent: ec21938f9a3fafb30276f058cf06f54c9e63b4d5
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Wed Feb 1 05:38:19 EST 2017

audio/flacdec: continue after decode error (thanks deuteron)

--- a/sys/src/cmd/audio/flacdec/flacdec.c
+++ b/sys/src/cmd/audio/flacdec/flacdec.c
@@ -117,7 +117,6 @@
 decerror(FLAC__StreamDecoder *dec, FLAC__StreamDecoderErrorStatus status, void *client_data)
 {
 	fprintf(stderr, "decode error: %s (%d)\n", FLAC__StreamDecoderErrorStatusString[status], status);
-	exit(1);
 }
 
 int main(int argc, char *argv[])
--