PING 3 [PATCH 0/2] provide simple detection of indeterminate pointers

2021-11-22 Thread Martin Sebor via Gcc-patches
Pinging the two patches below: -Wuse-after-free: https://gcc.gnu.org/pipermail/gcc-patches/2021-November/583044.html and -Wdangling-pointer: https://gcc.gnu.org/pipermail/gcc-patches/2021-November/583045.html On 11/15/21 9:47 AM, Martin Sebor wrote: Pinging the two patches below: -Wuse-after-

PING 2 [PATCH 0/2] provide simple detection of indeterminate pointers

2021-11-15 Thread Martin Sebor via Gcc-patches
Pinging the two patches below: -Wuse-after-free: https://gcc.gnu.org/pipermail/gcc-patches/2021-November/583044.html and -Wdangling-pointer: https://gcc.gnu.org/pipermail/gcc-patches/2021-November/583045.html On 11/8/21 3:41 PM, Martin Sebor wrote: Ping for the two patches below: -Wuse-after-

PING [PATCH 0/2] provide simple detection of indeterminate pointers

2021-11-08 Thread Martin Sebor via Gcc-patches
Ping for the two patches below: -Wuse-after-free: https://gcc.gnu.org/pipermail/gcc-patches/2021-November/583044.html and -Wdangling-pointer: https://gcc.gnu.org/pipermail/gcc-patches/2021-November/583045.html On 11/1/21 4:15 PM, Martin Sebor wrote: This two-patch series adds support for the d

[PATCH 0/2] provide simple detection of indeterminate pointers

2021-11-01 Thread Martin Sebor via Gcc-patches
This two-patch series adds support for the detection of uses of pointers invalidated as a result of the lifetime of the objects they point to having ended: either explicitly, after a call to a dynamic deallocation function, or implicitly, by virtue of an object with automatic storage duration havi