Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
10.1.0
-
None
Description
struct os_aio_slot_t{
|
...
|
#ifdef HAVE_LZO
|
byte lzo_mem[LZO1X_1_15_MEM_COMPRESS];
|
#else
|
byte lzo_mem[1]; /* Temporal memory used by LZO */
|
#endif
|
Modify array to be dynamically allocated and allocate if and only if LZO is really used.