import patch from David Lichteblau and make scan_ldapsearchrequest work

again with the fixed code ;)
This commit is contained in:
leitner
2002-01-28 02:34:21 +00:00
parent 086e8790db
commit e0a5cf85ee
17 changed files with 31 additions and 16 deletions

View File

@@ -7,7 +7,6 @@ int scan_asn1string(const char* src,const char* max,
if (!(len=scan_asn1tag(src,max,tc,tt,tag))) return 0;
if (!(tmp=scan_asn1length(src+len,max,l))) return 0;
len+=tmp;
if (src+len+*l>max) return 0;
*s=src+len;
return len+*l;
}