Browse Source

Ticket 47722 - Using the filter file does not work

Bug Description:  Using a filter file does not work correctly.  rsearch fails to
                  to use the filters from the file.

Fix Description:  There was a bug where we incorrectly freed each filter right after
                  we added it to the local list.  This left the list empty.

https://fedorahosted.org/389/ticket/47722

Reviewed by: nhosoi(Thanks!)
Mark Reynolds 11 years ago
parent
commit
fb22b387e4
1 changed files with 0 additions and 1 deletions
  1. 0 1
      ldap/servers/slapd/tools/rsearch/nametable.c

+ 0 - 1
ldap/servers/slapd/tools/rsearch/nametable.c

@@ -160,7 +160,6 @@ int nt_load(NameTable *nt, const char *filename)
             free(s);
             break;
         }
-        free(s);
     }
     PR_Close(fd);
     return nt->size;