| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| |\
| |
| |
| | |
8b50209c fix for warning (Onur Altun)
|
| | |
| |
| |
| | |
monero/tests/unit_tests/memwipe.cpp:50:8: Warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
if (wipe) ASSERT_TRUE(memcmp(quux, "bar", 3));
|
| |/ |
|
| |
|
|
|
|
| |
free might overwrite the memory, so we can't expect to see
the NULs we overwrote with, but at least we shouldn't see
the original data.
|
|
|
It's meant to avoid being optimized out
memory_cleanse lifted from bitcoin
|