Increase the size of various char buffer to solve lvx coredump (fail).

This commit is contained in:
Jean-Paul Chaput 2021-09-15 10:42:21 +02:00
parent c12f377989
commit 5e83c92d03
3 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -19,6 +19,7 @@
#include "mvl_syacc.h"
#include "mvl_stdef.h"
#include "gen_generic.h"
//#define YYDEBUG 1
extern int yydebug = 1;

View File

@ -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;