Skip to content
Snippets Groups Projects
Commit f2eabb78 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

Merge branch 'feature-2307' into 'master'

fixed memory exception in dap_stream_ch_delete()

See merge request !1
parents 9bead776 24f51903
No related branches found
No related tags found
1 merge request!1fixed memory exception in dap_stream_ch_delete()
......@@ -110,9 +110,11 @@ void dap_stream_ch_delete(dap_stream_ch_t*ch)
pthread_mutex_destroy(&(ch->mutex));
/* fixed raise, but probably may be memory leak!
if(ch->internal){
free(ch->internal);
}
*/
//free(ch);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment