ede8a0235b
Current users of fixed vstr buffers (building file paths) assume that there is no overflow and do not check for overflow after building the vstr. This has the potential to lead to NULL pointer dereferences (when vstr_null_terminated_str returns NULL because it can't allocate RAM for the terminating byte) and stat'ing and loading invalid path names (due to the path being truncated). The safest and simplest thing to do in these cases is just raise an exception if a write goes beyond the end of a fixed vstr buffer, which is what this patch does. It also simplifies the vstr code. |
||
---|---|---|
.. | ||
extra_coverage.py | ||
extra_coverage.py.exp | ||
ffi_callback.py | ||
ffi_callback.py.exp | ||
ffi_float.py | ||
ffi_float.py.exp | ||
ffi_float2.py | ||
ffi_float2.py.exp |