mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
Fix free of NULL.
This commit is contained in:
parent
957f9dc7c8
commit
6bbe68823c
@ -250,7 +250,7 @@ out:
|
||||
dom_string_unref(ds_value);
|
||||
if (ds_name != NULL)
|
||||
dom_string_unref(ds_name);
|
||||
if (type == NULL)
|
||||
if (type != NULL)
|
||||
free(type);
|
||||
|
||||
return control;
|
||||
|
Loading…
Reference in New Issue
Block a user