6 Nov
2019
6 Nov
'19
4:50 p.m.
Hi Gabriel, On 11/6/19 4:28 PM, Gabriel Ivăncescu wrote:
--- a/dlls/jscript/jscript.c +++ b/dlls/jscript/jscript.c @@ -62,6 +62,8 @@ typedef struct {
bytecode_t *queue_head; bytecode_t *queue_tail; + bytecode_t *persistent_head; + bytecode_t *persistent_tail;
I think it would be cleaner to use struct list from wine/list.h instead. Thanks, Jacek