From ae8bafea44edd751be80329f89813df49653df1c Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Mon, 20 Dec 2004 23:02:17 +0000 Subject: [PATCH] why scan with {im} when the value need sbe copied? moreover, cookie must be freed after use --- clients/tools/ldapsearch.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/clients/tools/ldapsearch.c b/clients/tools/ldapsearch.c index 7662f72987..a7df2dbd90 100644 --- a/clients/tools/ldapsearch.c +++ b/clients/tools/ldapsearch.c @@ -203,7 +203,7 @@ static int pagePrompt = 1; static ber_int_t pageSize = 0; static ber_int_t entriesLeft = 0; static ber_int_t morePagedResults = 1; -static struct berval cookie = { 0, NULL }; +static struct berval page_cookie = { 0, NULL }; static int npagedresponses; static int npagedentries; static int npagedreferences; @@ -758,10 +758,14 @@ getNextPage: return EXIT_FAILURE; } - ber_printf( prber, "{iO}", pageSize, &cookie ); + ber_printf( prber, "{iO}", pageSize, &page_cookie ); if ( ber_flatten2( prber, &c[i].ldctl_value, 0 ) == -1 ) { return EXIT_FAILURE; } + if ( page_cookie.bv_val != NULL ) { + ber_memfree( page_cookie.bv_val ); + page_cookie.bv_val = NULL; + } c[i].ldctl_oid = LDAP_CONTROL_PAGEDRESULTS; c[i].ldctl_iscritical = pagedResults > 1; @@ -1048,7 +1052,7 @@ static int dosearch( #ifdef LDAP_CONTROL_PAGEDRESULTS if ( pageSize != 0 ) { if ( rc == LDAP_SUCCESS ) { - rc = parse_page_control( ld, msg, &cookie ); + rc = parse_page_control( ld, msg, &page_cookie ); } else { morePagedResults = 0; } @@ -1531,7 +1535,6 @@ parse_page_control( LDAPControl *ctrlp = NULL; BerElement *ber; ber_tag_t tag; - struct berval servercookie = { 0, NULL }; rc = ldap_parse_result( ld, result, &err, NULL, NULL, NULL, &ctrl, 0 ); @@ -1560,8 +1563,7 @@ parse_page_control( return EXIT_FAILURE; } - tag = ber_scanf( ber, "{im}", &entriesLeft, &servercookie ); - ber_dupbv( cookie, &servercookie ); + tag = ber_scanf( ber, "{io}", &entriesLeft, cookie ); (void) ber_free( ber, 1 ); if( tag == LBER_ERROR ) { @@ -1576,7 +1578,7 @@ parse_page_control( return EXIT_FAILURE; } - if ( servercookie.bv_len == 0 ) { + if ( cookie->bv_len == 0 ) { morePagedResults = 0; } -- 2.39.5