mirror of
https://github.com/fluencelabs/redis
synced 2025-06-23 14:01:34 +00:00
Don't assume no padding or specific ordering in moduleLoadQueueEntry structure.
We need to be free to shuffle fields or add more fields in a structure without breaking code. Related to issue #3293.
This commit is contained in:
@ -686,7 +686,7 @@ struct saveparam {
|
||||
struct moduleLoadQueueEntry {
|
||||
sds path;
|
||||
int argc;
|
||||
robj *argv[];
|
||||
robj **argv;
|
||||
};
|
||||
|
||||
struct sharedObjectsStruct {
|
||||
|
Reference in New Issue
Block a user