Revision 6499ad1a9846ac273880fea220216fff32537470 authored by Zalman Stern on 23 September 2022, 22:58:27 UTC, committed by GitHub on 23 September 2022, 22:58:27 UTC
Latest clang is giving a use after free warning for printing a pointer
value after it is freed. The compiler is not exactly wrong in that a
pointer is being passed to something after it is freed, but the
something is just printing the pointer's value for debugging
purposes. Cast through an intptr_t to avoid the warning.
1 parent 666b87d
Raw File
.gitattributes
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.cpp text
*.c text
*.h text

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.tiff binary
back to top