Skip to content
Snippets Groups Projects
Commit 6f3471d5 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: protect and comment test of illegal access (#1066)

parent d7fc5f6f
Branches
Tags
No related merge requests found
......@@ -103,8 +103,11 @@ int main(int argc, char *argv[])
ldl[1].reserve(5); // should not decrease allocated size
ldl[1](3) = 2; // allocates space and sets value
// this works without a segfault, but doesn't change the list size
#ifndef FULLDEBUG
// Accessing an out-of-bounds address, but writing into allocated memory.
// No segfault, doesn't change the list size. Nonetheless not a good idea.
ldl[0][4] = 4;
#endif
ldl[1] = 3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment