Jeroen Ketema
Jeroen Ketema
> I'd expect to see a destructor call for the temporary string at line 1369 of ir.cpp. This turns out to be a very interesting case. It's a temporary, by...
> very interesting case. It's a temporary, by the lifetime is at block scope, not expression scope. This is now fixed.
This PR is now just test updates. All the other parts have been merged into `main` in separate PRs.
Closing in favour of https://github.com/github/codeql/pull/15978. That's the 3rd in a series of PRs, which mostly does what was done here, except for some synthetic destructor generation related to throws (that'll...
> * According to https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/, only few compilers are supported. The supported compiler are old versions (clang12 and gcc11). Is there any issue to use latest version og these compilers...
Closing as answered.
Hi @filipss379, Which version of CodeQL are you using?
> It seems to me as an unusual temporary directory Yeah, now you point that out, that is odd. `c:\\Users\\xxx\\Desktop\\help` is the directory in which the source file and script...
Hi again, It seems that Windows 11 doesn't like a file to be opened twice. The following fails with the same error: ```python import tempfile import shutil with tempfile.NamedTemporaryFile(mode='w+') as...
Yes, that works if I close both `tmp_file` after the flush and `backup` sometime before `shutil.copy(test_case, backup.name)`.