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

Merge branch 'bugs-4220-clean' into 'master'

[*] possible fix for cdb (both packet corruption and behavior on case of corrupted packet

See merge request !143
parents 42564135 45f3e967
No related branches found
No related tags found
2 merge requests!148Master,!143[*] possible fix for cdb (both packet corruption and behavior on case of corrupted packet
Pipeline #4250 passed with stage
in 16 seconds
...@@ -421,7 +421,7 @@ static void *thread_worker_function(void *arg) ...@@ -421,7 +421,7 @@ static void *thread_worker_function(void *arg)
pthread_mutex_lock(&cur->write_hold); pthread_mutex_lock(&cur->write_hold);
cur->buf_out_size -= total_sent; cur->buf_out_size -= total_sent;
if (cur->buf_out_size) { if (cur->buf_out_size) {
memcpy(cur->buf_out, &cur->buf_out[total_sent], cur->buf_out_size); memmove(cur->buf_out, &cur->buf_out[total_sent], cur->buf_out_size);
} else { } else {
cur->flags &= ~DAP_SOCK_READY_TO_WRITE; cur->flags &= ~DAP_SOCK_READY_TO_WRITE;
} }
......
...@@ -771,8 +771,10 @@ void stream_proc_pkt_in(dap_stream_t * a_stream) ...@@ -771,8 +771,10 @@ void stream_proc_pkt_in(dap_stream_t * a_stream)
{ {
dap_stream_ch_pkt_t * l_ch_pkt = (dap_stream_ch_pkt_t *) a_stream->pkt_cache; dap_stream_ch_pkt_t * l_ch_pkt = (dap_stream_ch_pkt_t *) a_stream->pkt_cache;
if(dap_stream_pkt_read(a_stream,l_pkt, l_ch_pkt, STREAM_BUF_SIZE_MAX)==0){ if(dap_stream_pkt_read(a_stream,l_pkt, l_ch_pkt, sizeof(a_stream->pkt_cache))==0){
log_it(L_WARNING, "Input: can't decode packet size=%d",l_pkt_size); log_it(L_WARNING, "Input: can't decode packet size=%d",l_pkt_size);
DAP_DELETE(l_pkt);
return;
} }
_detect_loose_packet(a_stream); _detect_loose_packet(a_stream);
......
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