summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/src/mmi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CryptoPP/src/mmi.cpp')
-rw-r--r--plugins/CryptoPP/src/mmi.cpp19
1 files changed, 8 insertions, 11 deletions
diff --git a/plugins/CryptoPP/src/mmi.cpp b/plugins/CryptoPP/src/mmi.cpp
index b7c047a9e5..321dc1d871 100644
--- a/plugins/CryptoPP/src/mmi.cpp
+++ b/plugins/CryptoPP/src/mmi.cpp
@@ -2,20 +2,17 @@
void __fastcall safe_free(void** p)
{
- if (*p) {
- free(*p);
- *p = NULL;
- }
+ if (*p) {
+ free(*p);
+ *p = NULL;
+ }
}
void __fastcall safe_delete(void** p)
{
- if (*p) {
- delete(*p);
- *p = NULL;
- }
+ if (*p) {
+ delete(*p);
+ *p = NULL;
+ }
}
-
-
-// EOF