mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
ZVISION: Fix uninitialized scalar field (CID 1257070)
This commit is contained in:
parent
9c2782a680
commit
ea2ad625ff
@ -973,8 +973,10 @@ bool ActionStreamVideo::execute() {
|
||||
|
||||
ActionSyncSound::ActionSyncSound(ZVision *engine, int32 slotkey, const Common::String &line) :
|
||||
ResultAction(engine, slotkey) {
|
||||
_syncto = 0;
|
||||
|
||||
char fileName[25];
|
||||
int notUsed;
|
||||
int notUsed = 0;
|
||||
|
||||
sscanf(line.c_str(), "%d %d %25s", &_syncto, ¬Used, fileName);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user