Error if seeking to before the start of a mem stream

This commit is contained in:
Anand K Mistry 2018-11-06 14:39:17 +11:00 committed by GitHub
parent 826113fd6c
commit c8501a4216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,6 +184,10 @@ int32_t mz_stream_mem_seek(void *stream, int64_t offset, int32_t origin)
mz_stream_mem_set_size(stream, (int32_t)new_pos);
}
else if (new_pos < 0)
{
return MZ_SEEK_ERROR;
}
mem->position = (int32_t)new_pos;
return MZ_OK;