Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The array_grow() function calculates the size by multiplying with sizeof(union Value*), where sizeof(union Value) was clearly meant. In practice, these are the same size on most (or maybe even all) systems, as no current member of union Value is larger than a pointer -- see name.h. But it's still wrong.
- Loading branch information