Skip to content

Commit a10e282

Browse files
committed
Adding a missing free.
1 parent e8d3d78 commit a10e282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/numberparsingcheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ bool validate(const char *dirname) {
154154
float_count, invalid_count,
155155
int_count + float_count + invalid_count);
156156
}
157-
free((void*)p.data());
157+
free(p.data());
158158
free(fullpath);
159159
}
160160
}

0 commit comments

Comments
 (0)