Aruise
Aruise
Static analyzer caught a memory leak Handle 'handle' opened here: https://github.com/Nuitka/Nuitka/blob/551166924fe58dfcdbce3a64dd53e474af876b1a/nuitka/build/static_src/MetaPathBasedLoader.c#L806 Handle leaked here, causing memory leak: https://github.com/Nuitka/Nuitka/blob/551166924fe58dfcdbce3a64dd53e474af876b1a/nuitka/build/static_src/MetaPathBasedLoader.c#L864 Perhaps adding either 'dlclose(handle);' or exception before 'return NULL;' will fix the...
There are two exception catches for OSError, first one is a pass, second one is unreachable since it is caught and passed already. https://github.com/celery/kombu/blob/67588f8aa7cc6d561f786440485885de5d0753d3/kombu/utils/eventio.py#L72-L79 Probably second one should be caught...
Hi, In function [TRACE_log](https://github.com/facebook/zstd/blob/d654fca78690fa15cceb8058ac47454d914a0e63/programs/zstdcli_trace.c#L80) 'duration' is received from function [ZSTD_trace_compress_end](https://github.com/facebook/zstd/blob/d654fca78690fa15cceb8058ac47454d914a0e63/programs/zstdcli_trace.c#L135), which states that it could be zero Which leads to a possible division by zero bug ``` void ZSTD_trace_compress_end(ZSTD_TraceCtx ctx,...