EgorWeders
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
src/goodbyedpi.c
|
|
@ -225,7 +225,7 @@ static void add_ip_id_str(int id) { |
|
|
|
char *addfilter = malloc(strlen(ipid) + 16); |
|
|
|
|
|
|
|
if (!addfilter) |
|
|
|
return ; |
|
|
|
return; |
|
|
|
|
|
|
|
sprintf(addfilter, ipid, id); |
|
|
|
|
|
|
@ -248,7 +248,7 @@ static void add_maxpayloadsize_str(unsigned short maxpayload) { |
|
|
|
char *addfilter = malloc(strlen(maxpayloadsize_str) + 16); |
|
|
|
|
|
|
|
if (!addfilter) |
|
|
|
return ; |
|
|
|
return; |
|
|
|
|
|
|
|
sprintf(addfilter, maxpayloadsize_str, maxpayload); |
|
|
|
|
|
|
|