[Scummvm-cvs-logs] scummvm master -> 9cb51bdbb1c54847c90d997ba4cc2ed997c9983d
sev-
sev at scummvm.org
Mon Dec 9 22:10:05 CET 2013
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:
9cb51bdbb1 FULLPIPE: Fix bug in MessageQueue::chain() which made intro hang
Commit: 9cb51bdbb1c54847c90d997ba4cc2ed997c9983d
https://github.com/scummvm/scummvm/commit/9cb51bdbb1c54847c90d997ba4cc2ed997c9983d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-12-09T12:56:38-08:00
Commit Message:
FULLPIPE: Fix bug in MessageQueue::chain() which made intro hang
Changed paths:
engines/fullpipe/messages.cpp
diff --git a/engines/fullpipe/messages.cpp b/engines/fullpipe/messages.cpp
index 4abf2ef..6af3f73 100644
--- a/engines/fullpipe/messages.cpp
+++ b/engines/fullpipe/messages.cpp
@@ -779,8 +779,8 @@ bool chainQueue(int queueId, int flags) {
nmq->_flags |= flags;
- if (!mq->chain(0)) {
- delete mq;
+ if (!nmq->chain(0)) {
+ delete nmq;
return false;
}
More information about the Scummvm-git-logs
mailing list