Faulty fall-through

This commit is contained in:
twinaphex 2017-12-17 17:12:02 +01:00
parent 0f906d0986
commit edae66e413

View File

@ -161,6 +161,7 @@ int intfstream_close(intfstream_internal_t *intf)
case INTFSTREAM_FILE:
if (intf->file.fp)
return filestream_close(intf->file.fp);
return 0;
case INTFSTREAM_MEMORY:
if (intf->memory.fp)
memstream_close(intf->memory.fp);