replace read_buf to skip_buf in skip function

This commit is contained in:
nw13slx
2021-12-12 00:26:55 -05:00
parent 913b1536d4
commit 7db29112d8

View File

@ -138,7 +138,7 @@ void ReaderNative::skip()
int n;
for (int i = 0; i < nchunk; i++) {
read_buf(&n, sizeof(int), 1);
read_double_chunk(n);
skip_buf(n*sizeof(double));
}
delete[] magic_string;