Increase the size of various char buffer to solve lvx coredump (fail).
This commit is contained in:
parent
c12f377989
commit
5e83c92d03
|
@ -63,8 +63,8 @@ extern "C" {
|
|||
#define WRITE_TEXT "w" /* write access */
|
||||
|
||||
/* chain buffer size */
|
||||
#define BUFSIZE 1024
|
||||
#define SIGSIZE 1024
|
||||
#define BUFSIZE 8192
|
||||
#define SIGSIZE 8192
|
||||
|
||||
/* USER field codes */
|
||||
#define LOFIGCHAIN 4592
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include "mvl_syacc.h"
|
||||
#include "mvl_stdef.h"
|
||||
#include "gen_generic.h"
|
||||
//#define YYDEBUG 1
|
||||
|
||||
|
||||
extern int yydebug = 1;
|
||||
|
|
|
@ -86,7 +86,7 @@ short left ; /* array left bound (= -1 if scalar) */
|
|||
short right; /* array right bound (= -1 if scalar) */
|
||||
|
||||
{
|
||||
char extname[100];
|
||||
char extname[65536];
|
||||
short i ;
|
||||
short inc = 1;
|
||||
struct locon *ptcon = NULL;
|
||||
|
|
Loading…
Reference in New Issue