Skip to content

Commit 3e6283f

Browse files
committed
Fix access violation: Skip complex char array of v4 MAT file
As reported by honggfuzz
1 parent 783ee49 commit 3e6283f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/mat4.c

+4
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,10 @@ Mat_VarReadNextInfo4(mat_t *mat)
857857
Mat_VarFree(matvar);
858858
return NULL;
859859
}
860+
if ( matvar->isComplex && MAT_C_CHAR == matvar->class_type ) {
861+
Mat_VarFree(matvar);
862+
return NULL;
863+
}
860864
err = fread(&tmp,sizeof(int),1,(FILE*)mat->fp);
861865
if ( !err ) {
862866
Mat_VarFree(matvar);

0 commit comments

Comments
 (0)