Browse Source

Bug 630092 - Coverity #15490: Resource leaks issues

https://bugzilla.redhat.com/show_bug.cgi?id=630092

Description:

The import_producer() has been modified to release ep when an error
occured.
Endi Sukma Dewata 15 năm trước cách đây
mục cha
commit
f88490faa1
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      ldap/servers/slapd/back-ldbm/import-threads.c

+ 1 - 0
ldap/servers/slapd/back-ldbm/import-threads.c

@@ -636,6 +636,7 @@ import_producer(void *param)
         ep = import_make_backentry(e, id);
         if ((ep == NULL) || (ep->ep_entry == NULL)) {
             slapi_entry_free(e);
+            backentry_free(&ep);
             goto error;
         }