Revert "Silence most noisy sources of memory leakage."
This reverts commit 408fb3b011
.
This commit is contained in:
parent
c53a9719d5
commit
6b62992c25
3 changed files with 2 additions and 9 deletions
|
@ -287,8 +287,7 @@ bool receive_meta(connection_t *c) {
|
|||
|
||||
char *request = buffer_readline(&c->inbuf);
|
||||
if(request) {
|
||||
bool result = false;
|
||||
result = receive_request(c, request);
|
||||
bool result = receive_request(c, request);
|
||||
if(!result)
|
||||
return false;
|
||||
continue;
|
||||
|
|
|
@ -837,7 +837,6 @@ bool receive_sptps_record(void *handle, uint8_t type, const void *data, uint16_t
|
|||
}
|
||||
|
||||
vpn_packet_t inpkt;
|
||||
bzero(&inpkt, sizeof(inpkt));
|
||||
inpkt.offset = DEFAULT_PACKET_OFFSET;
|
||||
|
||||
if(type == PKT_PROBE) {
|
||||
|
|
|
@ -498,11 +498,6 @@ bool metakey_h(connection_t *c, const char *request) {
|
|||
char enckey[len];
|
||||
char key[len];
|
||||
|
||||
bzero(key, len);
|
||||
bzero(enckey, len);
|
||||
|
||||
cipher = digest = maclength =compression = 0;
|
||||
|
||||
if(sscanf(request, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, hexkey) != 5) {
|
||||
logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
|
||||
return false;
|
||||
|
@ -697,7 +692,7 @@ bool send_ack(connection_t *c) {
|
|||
to create node_t and edge_t structures. */
|
||||
|
||||
struct timeval now;
|
||||
bool choice = false;
|
||||
bool choice;
|
||||
|
||||
/* Estimate weight */
|
||||
|
||||
|
|
Loading…
Reference in a new issue