Merge #11284: Fix invalid memory access in CScript::operator+= (guidovranken, ajtowns)
commit10bee0dd4f37eb6cb7a0f1d565fa0fecf8109c35
authorWladimir J. van der Laan <laanwj@gmail.com>
Mon, 2 Oct 2017 12:46:16 +0000 (2 14:46 +0200)
committerWladimir J. van der Laan <laanwj@gmail.com>
Mon, 2 Oct 2017 12:46:47 +0000 (2 14:46 +0200)
tree3bbece4ac1b0adf8ce150157902c258754922502
parentc641ccac5bd89ce3b908f0939bcb6414d77a2141
parentd601f16621e55c2f174afea2c5d7d1c9a0c0b969
Merge #11284: Fix invalid memory access in CScript::operator+= (guidovranken, ajtowns)

d601f16 Fix invalid memory access in CScript::operator+= (Anthony Towns)

Pull request description:

  This is a fix for #11114 -- invoking "s += s" gets turned into "s.insert(s.end(), s.begin(), s.end())" which can result in an invalid memory access is s.capacity() < 2*s.size() (because s gets resized and possibly moved, so s.begin() and s.end() become invalid references when reading the values to be appended).

  The fix is straightforward: reserve enough space in advance, so that insert() doesn't need to resize and thus its arguments remain valid.

  A simple test case is added as well; though you probably need to run it via valgrind to actually catch the problem when it's not fixed...

Tree-SHA512: 4720d0c17463fdc43b344c45fe603423d20b30d48da1b9d85eeedc505d7f34db1ed5495ef1556459ae962a94717e3c6e8fc441763771901efea210d01322b7ef