diff options
Diffstat (limited to 'registry/registry_person.c')
-rw-r--r-- | registry/registry_person.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/registry_person.c b/registry/registry_person.c index 53e3f47f..268b0bd1 100644 --- a/registry/registry_person.c +++ b/registry/registry_person.c @@ -79,7 +79,7 @@ REGISTRY_PERSON_URL *registry_person_url_allocate(REGISTRY_PERSON *p, REGISTRY_M REGISTRY_PERSON_URL *tpu = registry_person_url_index_add(p, pu); if(tpu != pu) { error("Registry: Attempted to add duplicate person url '%s' with name '%s' to person '%s'", u->url, name, p->guid); - free(pu); + freez(pu); pu = tpu; } else |