mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 10:07:56 -05:00
back out fix to ITS#3932
This commit is contained in:
parent
76f52279ef
commit
90255dfc42
2 changed files with 1 additions and 21 deletions
|
|
@ -206,10 +206,7 @@ struct rewrite_rule {
|
|||
char *lr_pattern;
|
||||
char *lr_subststring;
|
||||
char *lr_flagstring;
|
||||
#ifdef USE_REWRITE_LDAP_PVT_THREADS
|
||||
ldap_pvt_thread_mutex_t lr_mutex;
|
||||
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
|
||||
regex_t lr_regex;
|
||||
regex_t lr_regex;
|
||||
|
||||
/*
|
||||
* I was thinking about some kind of per-rule mutex, but there's
|
||||
|
|
|
|||
|
|
@ -346,14 +346,6 @@ rewrite_rule_compile(
|
|||
return REWRITE_ERR;
|
||||
}
|
||||
|
||||
#ifdef USE_REWRITE_LDAP_PVT_THREADS
|
||||
if ( ldap_pvt_thread_mutex_init( &rule->lr_mutex ) ) {
|
||||
regfree( &rule->lr_regex );
|
||||
free( rule );
|
||||
return REWRITE_ERR;
|
||||
}
|
||||
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
|
||||
|
||||
/*
|
||||
* Just to remember them ...
|
||||
*/
|
||||
|
|
@ -427,13 +419,7 @@ recurse:;
|
|||
|
||||
op->lo_num_passes++;
|
||||
|
||||
#ifdef USE_REWRITE_LDAP_PVT_THREADS
|
||||
ldap_pvt_thread_mutex_lock( &rule->lr_mutex );
|
||||
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
|
||||
rc = regexec( &rule->lr_regex, string, nmatch, match, 0 );
|
||||
#ifdef USE_REWRITE_LDAP_PVT_THREADS
|
||||
ldap_pvt_thread_mutex_unlock( &rule->lr_mutex );
|
||||
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
|
||||
if ( rc != 0 ) {
|
||||
if ( *result == NULL && string != arg ) {
|
||||
free( string );
|
||||
|
|
@ -503,9 +489,6 @@ rewrite_rule_destroy(
|
|||
}
|
||||
|
||||
regfree( &rule->lr_regex );
|
||||
#ifdef USE_REWRITE_LDAP_PVT_THREADS
|
||||
ldap_pvt_thread_mutex_destroy( &rule->lr_mutex );
|
||||
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
|
||||
|
||||
for ( action = rule->lr_action; action; ) {
|
||||
struct rewrite_action *curraction = action;
|
||||
|
|
|
|||
Loading…
Reference in a new issue