]> git.sur5r.net Git - cc65/commitdiff
replaced one arbitrary limit by another one, will not crash on re-linking GeoPublish...
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 17 Oct 2003 09:11:04 +0000 (09:11 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 17 Oct 2003 09:11:04 +0000 (09:11 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2545 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/grc/grc.c
src/grc/grc.h

index 1fb73e18e3c4565bc5698931118c44ff1ce7abfa..ab2874f6d59230be475910c06a53fe084ad878dc 100644 (file)
@@ -35,7 +35,7 @@
 
 void VLIRLinker(int argc, char *argv[]) {
 FILE *outCVT, *input;
-unsigned char buffer[BLOODY_BIG_BUFFER];
+unsigned char buffer[THIS_BUFFER_IS_SOOO_HUGE];
 unsigned char vlirtabt[127];
 unsigned char vlirtabs[127];
 int i,j,lastarg;
index 98c02bd6a11971112e5d2b748b04cca9d6b082c2..d2a96362bf7c7ac408494e74eac715fbfb26be21 100644 (file)
@@ -1,6 +1,8 @@
 
 /* I hope that no one will be able to create a .grc bigger than this... */
 #define BLOODY_BIG_BUFFER 65000
+/* there are no 6MB GEOS binaries... I hope! */
+#define THIS_BUFFER_IS_SOOO_HUGE 6000000
 
 struct menuitem {
        char *name;