Commit bd34ffbd authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

adsldp: Fix a typo in IDirectorySearch::GetNextRow().

parent 31d9d0f7
......@@ -1317,7 +1317,7 @@ static HRESULT WINAPI search_GetNextRow(IDirectorySearch *iface, ADS_SEARCH_HAND
if (ldap_ctx->pos >= ldap_ctx->count)
return S_ADS_NOMORE_ROWS;
ldap_ctx->entry = ldap_next_entry(ldap->ld, ldap_ctx->res);
ldap_ctx->entry = ldap_next_entry(ldap->ld, ldap_ctx->entry);
}
if (!ldap_ctx->entry)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment