Lioncash e77337588e file_util: Early-exit in WriteArray and ReadArray if specified lengths are zero
It's undefined behavior to pass a null pointer to std::fread and
std::fwrite, even if the length passed in is zero, so we must perform
the precondition checking ourselves.

A common case where this can occur is when passing in the data of an
empty std::vector and size, as an empty vector will typically have a
null internal buffer.

While we're at it, we can move the implementation out of line and add
debug checks against passing in nullptr to std::fread and std::fwrite.
2020-04-15 14:43:37 -04:00
..
2019-11-23 01:30:06 +01:00
2019-02-06 22:20:57 -03:00
2018-10-02 16:04:10 +02:00
2019-04-25 08:07:57 -04:00
2019-04-25 08:07:57 -04:00