[9/9] gdiplus: initial GdipFlattenPath implementation

Nikolay Sivov bunglehead at gmail.com
Wed Sep 3 05:11:57 CDT 2008


Alexandre Julliard wrote:
> 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.
Actually doesn't free anything. Thanks, will be corrected.



More information about the wine-devel mailing list