1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

r19703: Don't free a string if you want to return it!

(This used to be commit 3fed72ac3efd1fa7df8fb7d1e2cb9772d66bb4bd)
This commit is contained in:
Simo Sorce 2006-11-14 16:50:29 +00:00 committed by Gerald (Jerry) Carter
parent 4d12d3a5c8
commit b903eb231a

View File

@ -932,7 +932,6 @@ const char *get_conf_item_string(const pam_handle_t *pamh,
_pam_log(pamh, ctrl, LOG_INFO, "no \"=\" delimiter for \"%s\" found\n", item);
goto out;
}
SAFE_FREE(parm);
_pam_log_debug(pamh, ctrl, LOG_INFO, "PAM config: %s '%s'\n", item, p+1);
return p + 1;
}