1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-01-14 17:37:27 +01:00

remove duplicate check in SAFE_FREE

This commit is contained in:
Brent Cook 2015-04-27 11:43:35 -05:00
parent 1b600dbfbe
commit 644bef77f6

View File

@ -12,7 +12,7 @@
#include <stdio.h>
#include <time.h>
#define SAFE_FREE(x) {if(x){free(x);x=NULL;}}
#define SAFE_FREE(x) {free(x); x = NULL;}
#ifdef _WIN32
#include <winsock2.h>