mkvparser,Projection::Parse: fix int->bool conv

this would have incorrectly returned true on parse failure

Change-Id: I1ae6fc2aae09491aa3cda47a5414529fc7a3848f
This commit is contained in:
James Zern 2016-10-17 23:34:06 -07:00
parent 0e179d683e
commit 6db32d5f6e

View File

@ -5219,7 +5219,7 @@ bool Projection::Parse(IMkvReader* reader, long long start, long long size,
if (status) {
delete[] data;
return status;
return false;
}
projection_ptr->private_data = data;