Browse Source

call lzo_init() only if required

pull/285/head
Logan007 4 years ago
parent
commit
49a5823b9c
  1. 1
      src/edge_utils.c

1
src/edge_utils.c

@ -233,6 +233,7 @@ n2n_edge_t* edge_init(const tuntap_dev *dev, const n2n_edge_conf_t *conf, int *r
eee->pending_peers = NULL; eee->pending_peers = NULL;
eee->sup_attempts = N2N_EDGE_SUP_ATTEMPTS; eee->sup_attempts = N2N_EDGE_SUP_ATTEMPTS;
if(eee->conf.compression == N2N_COMPRESSION_ID_LZO)
if(lzo_init() != LZO_E_OK) { if(lzo_init() != LZO_E_OK) {
traceEvent(TRACE_ERROR, "LZO compression error"); traceEvent(TRACE_ERROR, "LZO compression error");
goto edge_init_error; goto edge_init_error;

Loading…
Cancel
Save