[Scummvm-git-logs] scummvm master -> e2ef63e84123c199ab55de445e406aa626147e10
sev-
noreply at scummvm.org
Sat Jun 20 21:14:20 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
e2ef63e841 NANCY: Fix potentially dangerous code
Commit: e2ef63e84123c199ab55de445e406aa626147e10
https://github.com/scummvm/scummvm/commit/e2ef63e84123c199ab55de445e406aa626147e10
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-20T23:14:10+02:00
Commit Message:
NANCY: Fix potentially dangerous code
Changed paths:
engines/nancy/action/puzzle/sortpuzzle.cpp
diff --git a/engines/nancy/action/puzzle/sortpuzzle.cpp b/engines/nancy/action/puzzle/sortpuzzle.cpp
index 3c14abf371b..38e2772408d 100644
--- a/engines/nancy/action/puzzle/sortpuzzle.cpp
+++ b/engines/nancy/action/puzzle/sortpuzzle.cpp
@@ -293,7 +293,7 @@ void SortPuzzle::handleInput(NancyInput &input) {
const Cell &cur = _current[r][c];
line += Common::String::format("%d ", cur.value);
}
- debug(line.c_str());
+ debug("%s", line.c_str());
}
debug("-----");
}
More information about the Scummvm-git-logs
mailing list