Пример #1
0
void U08BufFree(U08Buf &self)
{
    if (self.data())
    {
        ABC_UtilGuaranteedMemset(self.data(), 0, self.size());
        free(self.data());
    }
    self = U08Buf();
}
Пример #2
0
void
stringFree(char *string)
{
    if (string)
    {
        ABC_UtilGuaranteedMemset(string, 0, strlen(string));
        free(string);
    }
}