704 |
else |
else |
705 |
msg_box (dlg, _("Keys successfully created."), |
msg_box (dlg, _("Keys successfully created."), |
706 |
_("Card Edit"), MB_OK); |
_("Card Edit"), MB_OK); |
707 |
memset (pass, 0, sizeof (pass)); |
wipememory (pass, sizeof (pass)); |
708 |
free_pincb (&pincb); |
free_pincb (&pincb); |
709 |
delete ce; |
delete ce; |
710 |
return TRUE; |
return TRUE; |
824 |
SetDlgItemText (dlg, IDC_CHPIN_OLDPIN, ""); |
SetDlgItemText (dlg, IDC_CHPIN_OLDPIN, ""); |
825 |
SetDlgItemText (dlg, IDC_CHPIN_NEWPIN2, ""); |
SetDlgItemText (dlg, IDC_CHPIN_NEWPIN2, ""); |
826 |
} |
} |
827 |
memset (pold, 0, sizeof (pold)); |
wipememory (pold, sizeof (pold)); |
828 |
memset (pnew, 0, sizeof (pnew)); |
wipememory (pnew, sizeof (pnew)); |
829 |
memset (pnew2, 0, sizeof (pnew2)); |
wipememory (pnew2, sizeof (pnew2)); |
830 |
delete ce; |
delete ce; |
831 |
break; |
break; |
832 |
|
|