aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/lure/strings.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/lure/strings.cpp b/engines/lure/strings.cpp
index c9a643a1de..21b61c386e 100644
--- a/engines/lure/strings.cpp
+++ b/engines/lure/strings.cpp
@@ -277,8 +277,11 @@ void StringData::getString(uint16 stringId, char *dest, const char *hotspotName,
// Copy over hotspot or action
ch = readCharacter();
const char *p = (ch == '1') ? hotspotName : characterName;
- strcpy(destPos, p);
- destPos += strlen(p);
+ if (p != NULL)
+ {
+ strcpy(destPos, p);
+ destPos += strlen(p);
+ }
} else if ((uint8) ch >= 0xa0) {
const char *p = getName((uint8) ch - 0xa0);
strcpy(destPos, p);