[Scummvm-cvs-logs] scummvm master -> e1428ce7ac21a76cd6fc5538e247a51cb4a9432e
bluegr
bluegr at gmail.com
Mon Jun 29 01:47:22 CEST 2015
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
e1428ce7ac SHERLOCK: SS: Fix uninitialized variable
Commit: e1428ce7ac21a76cd6fc5538e247a51cb4a9432e
https://github.com/scummvm/scummvm/commit/e1428ce7ac21a76cd6fc5538e247a51cb4a9432e
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2015-06-29T02:45:58+03:00
Commit Message:
SHERLOCK: SS: Fix uninitialized variable
Changed paths:
engines/sherlock/scalpel/scalpel_inventory.cpp
diff --git a/engines/sherlock/scalpel/scalpel_inventory.cpp b/engines/sherlock/scalpel/scalpel_inventory.cpp
index 5744ba9..95ca673 100644
--- a/engines/sherlock/scalpel/scalpel_inventory.cpp
+++ b/engines/sherlock/scalpel/scalpel_inventory.cpp
@@ -30,7 +30,7 @@ namespace Sherlock {
namespace Scalpel {
-ScalpelInventory::ScalpelInventory(SherlockEngine *vm) : Inventory(vm) {
+ScalpelInventory::ScalpelInventory(SherlockEngine *vm) : Inventory(vm), _invIndex(0) {
}
ScalpelInventory::~ScalpelInventory() {
More information about the Scummvm-git-logs
mailing list