diff options
author | Neil <nyamatongwe@gmail.com> | 2023-02-22 13:53:37 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-02-22 13:53:37 +1100 |
commit | 353d1f300549f23b7c8c2914fa5d19f5ec6aa48b (patch) | |
tree | f32e1a217ab5696429d3bcedfe95cf19c58b0b14 /qt/ScintillaEditBase/PlatQt.cpp | |
parent | 56d6a8af344938367c3d01c3969c212b3d3b9427 (diff) | |
download | scintilla-mirror-353d1f300549f23b7c8c2914fa5d19f5ec6aa48b.tar.gz |
Remove _CRT_SECURE_NO_DEPRECATE.
Replace [v]sprintf with bounds checked [v]snprintf.
Diffstat (limited to 'qt/ScintillaEditBase/PlatQt.cpp')
-rw-r--r-- | qt/ScintillaEditBase/PlatQt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp index 3a4889ca6..652c7c305 100644 --- a/qt/ScintillaEditBase/PlatQt.cpp +++ b/qt/ScintillaEditBase/PlatQt.cpp @@ -1332,7 +1332,7 @@ void Platform::DebugPrintf(const char *format, ...) noexcept char buffer[2000]; va_list pArguments{}; va_start(pArguments, format); - vsprintf(buffer, format, pArguments); + vsnprintf(buffer, std::size(buffer), format, pArguments); va_end(pArguments); Platform::DebugDisplay(buffer); } @@ -1345,7 +1345,7 @@ bool Platform::ShowAssertionPopUps(bool /*assertionPopUps*/) noexcept void Platform::Assert(const char *c, const char *file, int line) noexcept { char buffer[2000]; - sprintf(buffer, "Assertion [%s] failed at %s %d", c, file, line); + snprintf(buffer, std::size(buffer), "Assertion [%s] failed at %s %d", c, file, line); if (Platform::ShowAssertionPopUps(false)) { QMessageBox mb("Assertion Failure", buffer, QMessageBox::NoIcon, QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton); |