Commit 9bf3c1c5 authored by Claes Sjofors's avatar Claes Sjofors

wb load bugfix for DataAritmL objects

parent d670db23
...@@ -1186,13 +1186,13 @@ void wb_wblnode::buildAttr( ref_wblnode object, pwr_eBix bix) ...@@ -1186,13 +1186,13 @@ void wb_wblnode::buildAttr( ref_wblnode object, pwr_eBix bix)
ref_wblnode second_child; ref_wblnode second_child;
ref_wblnode next_sibling; ref_wblnode next_sibling;
int oper; int oper;
char value[2048]; char value[8192];
size_t size, offset; size_t size, offset;
int elements; int elements;
pwr_tTypeId tid; pwr_tTypeId tid;
pwr_eType type; pwr_eType type;
int flags; int flags;
char buf[2048]; char buf[8192];
int int_val, current_int_val; int int_val, current_int_val;
bool string_continue = false; bool string_continue = false;
...@@ -1391,12 +1391,12 @@ void wb_wblnode::buildBuffAttr( ref_wblnode object, pwr_eBix bix, pwr_tCid buffe ...@@ -1391,12 +1391,12 @@ void wb_wblnode::buildBuffAttr( ref_wblnode object, pwr_eBix bix, pwr_tCid buffe
ref_wblnode second_child; ref_wblnode second_child;
ref_wblnode next_sibling; ref_wblnode next_sibling;
int oper; int oper;
char value[2048]; char value[8192];
size_t size, offset; size_t size, offset;
int elements; int elements;
pwr_tTypeId tid; pwr_tTypeId tid;
pwr_eType type; pwr_eType type;
char buf[2048]; char buf[8192];
int int_val, current_int_val; int int_val, current_int_val;
wb_cdrep *cdrep; wb_cdrep *cdrep;
wb_adrep *adrep; wb_adrep *adrep;
...@@ -1910,7 +1910,7 @@ void wb_wblnode::registerNode( wb_vrepwbl *vol) ...@@ -1910,7 +1910,7 @@ void wb_wblnode::registerNode( wb_vrepwbl *vol)
else if (getType() == tokens.STRING_LITERAL) else if (getType() == tokens.STRING_LITERAL)
{ {
// Remove quotes and replace \" with " and also backslash // Remove quotes and replace \" with " and also backslash
char str[2048]; char str[8192];
const char *s; const char *s;
char *t; char *t;
bool first = true; bool first = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment