mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 10:37:41 -04:00
Replace MemSet with memset.
This commit is contained in:
@ -679,10 +679,10 @@ PYTHON_GLOBAL_METHOD_DEFINITION(PtSendFriendInvite, args, "Params: emailAddress,
|
||||
}
|
||||
|
||||
wchar_t emailAddr[kMaxEmailAddressLength];
|
||||
MemSet(emailAddr, 0, sizeof(emailAddr));
|
||||
memset(emailAddr, 0, sizeof(emailAddr));
|
||||
|
||||
wchar_t toName[kMaxPlayerNameLength];
|
||||
MemSet(toName, 0, sizeof(toName));
|
||||
memset(toName, 0, sizeof(toName));
|
||||
|
||||
// Check and see if the email address is ok
|
||||
int origStrLen = 0;
|
||||
|
Reference in New Issue
Block a user