diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 10:27:55 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 10:27:55 +0000 |
commit | 2ad5305d32e3e85d511ce81a7273b9de7c05d4ed (patch) | |
tree | c82101cb7e69f460ffa8af0718700ccbb5de6575 /plugins/ExternalAPI | |
parent | a371c34e0720a4d41a81da6b0cede16c5cf8779d (diff) |
replace lstrlenA to mir_strlen
git-svn-id: http://svn.miranda-ng.org/main/trunk@13750 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/m_assocmgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExternalAPI/m_assocmgr.h b/plugins/ExternalAPI/m_assocmgr.h index 1f7162f256..94e590dc86 100644 --- a/plugins/ExternalAPI/m_assocmgr.h +++ b/plugins/ExternalAPI/m_assocmgr.h @@ -259,7 +259,7 @@ static __inline char *Netlib_UrlDecode(char *str) MoveMemory(psz,&psz[1],2);
psz[2]=0;
*psz=(char)strtol(psz,NULL,16);
- MoveMemory(&psz[1],&psz[3],lstrlenA(&psz[3])+1);
+ MoveMemory(&psz[1],&psz[3],mir_strlen(&psz[3])+1);
break;
}
return str;
|