mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-18 19:41:01 -05:00
New utility function burnwcs().
Just like burnstr(), it memsets a NUL-terminated string to all zeroes before freeing it. The only difference is that it does it to a string of wchar_t.
This commit is contained in:
18
utils/burnwcs.c
Normal file
18
utils/burnwcs.c
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
* 'Burn' a dynamically allocated wide string, in the sense of
|
||||
* destroying it beyond recovery: overwrite it with zeroes and then
|
||||
* free it.
|
||||
*/
|
||||
|
||||
#include <wchar.h>
|
||||
|
||||
#include "defs.h"
|
||||
#include "misc.h"
|
||||
|
||||
void burnwcs(wchar_t *string)
|
||||
{
|
||||
if (string) {
|
||||
smemclr(string, sizeof(*string) * wcslen(string));
|
||||
sfree(string);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user