increased buffer size. Addresses bug #511072.
2008-01-22 Sven Neumann <sven@gimp.org> * plug-ins/imagemap/imap_csim.y: increased buffer size. Addresses bug #511072. * plug-ins/imagemap/imap_csim_parse.[ch]: regenerated. svn path=/trunk/; revision=24673
This commit is contained in:

committed by
Sven Neumann

parent
0a368b32e7
commit
fc35b815a9
@ -1,3 +1,10 @@
|
||||
2008-01-22 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/imagemap/imap_csim.y: increased buffer size. Addresses
|
||||
bug #511072.
|
||||
|
||||
* plug-ins/imagemap/imap_csim_parse.[ch]: regenerated.
|
||||
|
||||
2008-01-22 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/display/gimpdisplayshell-callbacks.c
|
||||
|
@ -49,7 +49,7 @@ static MapInfo_t *_map_info;
|
||||
%union {
|
||||
int val;
|
||||
double value;
|
||||
char id[1024]; /* Large enough to hold all polygon points! */
|
||||
char id[4096]; /* Large enough to hold all polygon points! */
|
||||
}
|
||||
|
||||
%token<val> IMG SRC WIDTH HEIGHT BORDER USEMAP
|
||||
|
@ -207,7 +207,7 @@ typedef union YYSTYPE
|
||||
{
|
||||
int val;
|
||||
double value;
|
||||
char id[1024]; /* Large enough to hold all polygon points! */
|
||||
char id[4096]; /* Large enough to hold all polygon points! */
|
||||
}
|
||||
/* Line 187 of yacc.c. */
|
||||
#line 214 "y.tab.c"
|
||||
|
@ -104,7 +104,7 @@ typedef union YYSTYPE
|
||||
{
|
||||
int val;
|
||||
double value;
|
||||
char id[1024]; /* Large enough to hold all polygon points! */
|
||||
char id[4096]; /* Large enough to hold all polygon points! */
|
||||
}
|
||||
/* Line 1489 of yacc.c. */
|
||||
#line 111 "y.tab.h"
|
||||
|
Reference in New Issue
Block a user