Fix PtrToArg encoding for Object *.

It didn't set the return value at all, changing the local value instead.
Now instead correctly sets it as a generic pointer type from `_owner`.
This commit is contained in:
Fabio Alessandrelli
2021-09-22 02:46:29 +02:00
committed by Bastiaan Olij
parent 2b1100c878
commit cc88df05e7

View File

@@ -169,7 +169,7 @@ struct PtrToArg<T *> {
}
typedef Object *EncodeT;
_FORCE_INLINE_ static void encode(T *p_var, void *p_ptr) {
p_ptr = p_var->_owner;
*((void **)p_ptr) = p_var->_owner;
}
};
@@ -180,7 +180,7 @@ struct PtrToArg<const T *> {
}
typedef const Object *EncodeT;
_FORCE_INLINE_ static void encode(T *p_var, void *p_ptr) {
p_ptr = p_var->_owner;
*((void **)p_ptr) = p_var->_owner;
}
};