[colobot] 374/390: Corrected a problem with strmid()

Didier Raboud odyx at moszumanska.debian.org
Fri Jun 12 14:22:06 UTC 2015


This is an automated email from the git hooks/post-receive script.

odyx pushed a commit to branch upstream/latest
in repository colobot.

commit 55b4e73a7aec16596c4dbd49a35e80a08a0ef6ba
Author: Tomasz Kapuściński <tomaszkax86 at gmail.com>
Date:   Fri May 22 20:34:35 2015 +0200

    Corrected a problem with strmid()
---
 src/CBot/CBotString.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/CBot/CBotString.cpp b/src/CBot/CBotString.cpp
index 8ea561a..7059f20 100644
--- a/src/CBot/CBotString.cpp
+++ b/src/CBot/CBotString.cpp
@@ -306,6 +306,8 @@ CBotString CBotString::Mid(int start, int lg)
 {
     CBotString res;
 
+    if (lg == -1) lg = 2000;
+
     // clamp start to correct value
     if (start < 0) start = 0;
     if (start >= m_lg) return res;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/colobot.git



More information about the Pkg-games-commits mailing list