[9/9] gdiplus: initial GdipFlattenPath implementation

Alexandre Julliard julliard at winehq.org
Wed Sep 3 04:53:18 CDT 2008


Nikolay Sivov <bunglehead at gmail.com> writes:

> +/* free all nodes including argument */
> +void free_path_list(path_list_node_t *node)
> +{
> +    path_list_node_t *n = node;
> +
> +    while(!n){
> +        GdipFree(node);
> +        node = n = n->next;
> +    }

This won't do what you want.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list