Ticket #8018: iq-points.diff

File iq-points.diff, 782 bytes (added by eriktorbjorn, 22 years ago)

Patch against an August 19 CVS snapshot

  • scummvm/script_v1.cpp

    diff -ur ScummVM-cvs20020819/scummvm/script_v1.cpp ScummVM-cvs20020819+hack/scummvm/script_v1.cpp
    old new  
    19911991                        FILE *out;
    19921992
    19931993                        a = getVarOrDirectByte(0x80);
    1994                         s = buf;
     1994
     1995                        // FIXME - check for buffer overflow
     1996                        strcpy(buf, getSavePath());
     1997                        s = buf + strlen(buf);
    19951998                        while ((*s++ = fetchScriptByte()));
    19961999
    19972000                        // Use buf as filename
     
    20092012                        FILE *in;
    20102013
    20112014                        a = getVarOrDirectByte(0x80);
    2012                         s = buf;
     2015
     2016                        // FIXME - check for buffer overflow
     2017                        strcpy(buf, getSavePath());
     2018                        s = buf + strlen(buf);
    20132019                        while ((*s++ = fetchScriptByte()));
    20142020
    20152021                        // Use buf as filename