From 0aa028c3f14ae97f2bea6e2ca21ad987833e9eac Mon Sep 17 00:00:00 2001 From: Strangerke Date: Thu, 18 Apr 2013 07:57:26 +0200 Subject: CGE: Add safeguard in expand() --- engines/cge/vga13h.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'engines/cge') diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp index e178795b7c..56a0754527 100644 --- a/engines/cge/vga13h.cpp +++ b/engines/cge/vga13h.cpp @@ -214,6 +214,7 @@ Sprite *Sprite::expand() { for (line = sprf.readLine(); !sprf.eos(); line = sprf.readLine()) { len = line.size(); + assert(len <= 513); strcpy(tmpStr, line.c_str()); lcnt++; if (len == 0 || *tmpStr == '.') -- cgit v1.2.3