diff options
-rw-r--r-- | src/decoder_control.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decoder_control.h b/src/decoder_control.h index 164875ae0..743c8fb58 100644 --- a/src/decoder_control.h +++ b/src/decoder_control.h @@ -207,6 +207,7 @@ dc_get_error(const struct decoder_control *dc) { assert(dc != NULL); assert(dc->command == DECODE_COMMAND_NONE); + assert(dc->state != DECODE_STATE_ERROR || dc->error != NULL); return dc->state == DECODE_STATE_ERROR ? g_error_copy(dc->error) |