finish size_t conversion from unsigned long

This commit is contained in:
leitner
2017-05-02 14:10:50 +00:00
parent 36d16fd21b
commit a6a5daf303
13 changed files with 23 additions and 17 deletions

View File

@@ -28,7 +28,8 @@ size_t scan_ldapmodifyrequest(const char* src,const char* max,struct ModifyReque
max=src+res+oslen;
if (src+res>=max) goto error; /* need at least one record */
do {
size_t islen, etmp;
size_t islen;
unsigned long etmp;
if (last) {
struct Modification* cur;
if (!(cur=malloc(sizeof(struct Modification)))) goto error;