Revision 6ee27eb1133fabe55515ecddd3e2ab27521f0cab authored by Bertrand Bellenot on 03 October 2023, 11:25:39 UTC, committed by GitHub on 03 October 2023, 11:25:39 UTC
* Fix potential crash of the rreader test on Windows

Delete the `TFile` pointers, preventing a potential crash in `TROOT::CloseFiles()` when trying to call the `Close()` method on `TWebSocket`/`TWebFile` via the interpreter `CallFunc_Exec` on Windows (visble with LLVM 16)

* Use `std::unique_ptr` instead of deleting the pointers (thanks Jonas)
1 parent 06a9a55
Raw File
.gitignore
# roottest & rootbench are their own repos
roottest
rootbench

# MacOS Xcode
xcuserdata
project.xcworkspace

# MacOS metadata
.DS_Store

# VS Code
.vs/
.vscode
.build

# CLion
.idea/*
cmake-build*/

# QtCreator
CMakeLists.txt.user
*.autosave

# Eclipse
.settings/*
.cproject
.project
.externalToolBuilders
.pydevproject

# Vim
*.swp

# Other Stuff
tags
*.d
.cache
.gdb_history
compile_commands.json

# Doxygen
documentation/doxygen/*.eps
documentation/doxygen/*.pcm
documentation/doxygen/*.jpg

# Pycache
.github/workflows/root-ci-config/__pycache__
back to top