gh-87092: avoid gcc warning on uninitialized struct field in assemble… by corona10 · Pull Request #105243 · python/cpython
Python/assemble.c: In function ‘_PyAssemble_MakeCodeObject’:
Python/assemble.c:130:9: warning: ‘handler.h_startdepth’ may be used uninitialized in this function [-Wmaybe-uninitialized]
int depth = handler->h_startdepth - 1;
^~~~~
Python/assemble.c:147:34: note: ‘handler.h_startdepth’ was declared here
_PyCompile_ExceptHandlerInfo handler;
^~~~~~~