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)
|
||||
{
|
||||
region *r;
|
||||
return;
|
||||
for (r=regions;r;r=r->next) {
|
||||
unit *u;
|
||||
for (u=r->units;u;u=u->next) {
|
||||
|
|
|
@ -49,8 +49,8 @@ static int nlocales = 0;
|
|||
#ifdef SHARE_ORDERS
|
||||
typedef struct order_data {
|
||||
char * _str;
|
||||
int _refcount : 16;
|
||||
int _lindex : 8;
|
||||
int _refcount : 20;
|
||||
int _lindex : 4;
|
||||
keyword_t _keyword;
|
||||
} order_data;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue