forked from github/server
The maximum number of references (32K) for the WORK order was exceeded.
This commit is contained in:
parent
e74b1c2267
commit
ff265f489c
|
@ -3701,6 +3701,7 @@ static void
|
||||||
defaultorders (void)
|
defaultorders (void)
|
||||||
{
|
{
|
||||||
region *r;
|
region *r;
|
||||||
|
return;
|
||||||
for (r=regions;r;r=r->next) {
|
for (r=regions;r;r=r->next) {
|
||||||
unit *u;
|
unit *u;
|
||||||
for (u=r->units;u;u=u->next) {
|
for (u=r->units;u;u=u->next) {
|
||||||
|
|
|
@ -49,8 +49,8 @@ static int nlocales = 0;
|
||||||
#ifdef SHARE_ORDERS
|
#ifdef SHARE_ORDERS
|
||||||
typedef struct order_data {
|
typedef struct order_data {
|
||||||
char * _str;
|
char * _str;
|
||||||
int _refcount : 16;
|
int _refcount : 20;
|
||||||
int _lindex : 8;
|
int _lindex : 4;
|
||||||
keyword_t _keyword;
|
keyword_t _keyword;
|
||||||
} order_data;
|
} order_data;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue