mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
Fix shadowing bug created from previous change.
This commit is contained in:
parent
0a5ab66d69
commit
6ffddf154a
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ str2charray( char *str, char *brkstr )
|
|||
int i;
|
||||
|
||||
/* protect the input string from strtok */
|
||||
char *str = strdup( str );
|
||||
str = strdup( str );
|
||||
|
||||
i = 1;
|
||||
for ( s = str; *s; s++ ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue