mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-31 03:59:34 -05:00
Fix tmp file removal.
This commit is contained in:
parent
3e818315f2
commit
1d7704b28e
2 changed files with 2 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ install-conf: FORCE
|
|||
echo "PRESERVING EXISTING CONFIGURATION FILE $(sysconfdir)/$$i" ; \
|
||||
fi; \
|
||||
$(INSTALL) $(INSTALLFLAGS) -m 644 $$tmpcf $(sysconfdir)/$$i.default; \
|
||||
$(RM) -f /tmp/slapd.$$ ; \
|
||||
$(RM) -f $$tmpcf ; \
|
||||
done
|
||||
|
||||
install-tools: FORCE
|
||||
|
|
|
|||
|
|
@ -156,6 +156,7 @@ char *derefDN ( Backend *be,
|
|||
free (newDN);
|
||||
newDN = NULL;
|
||||
free (remainder);
|
||||
remainder = NULL;
|
||||
break; /* no associated entry, dont deref */
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue