Comment 10 for bug 1173090

Revision history for this message
Dmitry Shachnev (mitya57) wrote :

Thanks for your work here.

+ * fortify-source-load.patch: New patch to fix loading save files under
+ FORTIFY_SOURCE (LP: 1173090)

The correct syntax for closing a bug report will be LP: #1173090.

-extern unsigned int soundcycleft, spc700read, timer2upd, xa, PHnum2writesfxreg;
-extern unsigned int opcd, HIRQCycNext, oamaddr, curexecstate, nmiprevaddrl;
+extern unsigned int soundcycleft, timer2upd, xa, PHnum2writesfxreg;
+extern unsigned char spc700read[], xaread[], opcd[], oamread[];
+extern unsigned int HIRQCycNext, oamaddr, curexecstate, nmiprevaddrl;

You turn some variables to arrays, but do not allocate memory anywhere — is that intentional?

+export DEB_BUILD_OPTIONS=nostrip

Why?