]> git.sesse.net Git - stockfish/commit
Avoid crashing on Log File opening
authorJoost VandeVondele <Joost.VandeVondele@gmail.com>
Mon, 21 Oct 2019 06:05:14 +0000 (08:05 +0200)
committerStéphane Nicolet <cassio@free.fr>
Mon, 21 Oct 2019 22:02:46 +0000 (00:02 +0200)
commit215cd19108d97376284192c29790b42a0b0e618a
tree656b6b48f86172517c2188e9636bf2147bb7c912
parent12d58adc68b1aa084d383d06bc47abbb3495ce3e
Avoid crashing on Log File opening

Stockfish crashes immediately if users enter a wrong file name (or even an existing
folder name) for debug log file. It may be hard for users to find out since it prints
nothing. If they enter the string via a chess GUI, the chess GUI may remember and
auto-send to Stockfish next time, makes Stockfish crashes all the time. Bug report by
Nguyen Hong Pham in this issue: https://github.com/official-stockfish/Stockfish/issues/2365

This patch avoids the crash and instead prefers to exit gracefully with a error
message on std:cerr, like we do with the fenFile for instance.

Closes https://github.com/official-stockfish/Stockfish/pull/2366

No functional change.
src/misc.cpp