Browse Source

fixed incorrect memory access

pull/14/head
orignal 11 years ago
parent
commit
224b423522
  1. 3
      TunnelConfig.h

3
TunnelConfig.h

@ -115,8 +115,9 @@ namespace tunnel
while (hop) while (hop)
{ {
delete hop; auto tmp = hop;
hop = hop->next; hop = hop->next;
delete tmp;
} }
} }

Loading…
Cancel
Save