[PATCH 3/5] jscript: Implement script persistence.

Jacek Caban jacek at codeweavers.com
Wed Nov 6 10:50:55 CST 2019


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




More information about the wine-devel mailing list