Skip to content
Snippets Groups Projects
Commit a98f9a3c authored by Constantin P.'s avatar Constantin P. 💬
Browse files

Merge branch 'hotfix-segv' into 'master'

...

See merge request !443
parents d015ef22 675110f9
No related branches found
No related tags found
3 merge requests!474Develop port 01.25,!455Develop port 02 12,!443...
Pipeline #47615 failed with stage
in 13 minutes and 24 seconds
...@@ -153,11 +153,12 @@ int dap_time_to_str_rfc822(char *a_out, size_t a_out_size_max, dap_time_t a_time ...@@ -153,11 +153,12 @@ int dap_time_to_str_rfc822(char *a_out, size_t a_out_size_max, dap_time_t a_time
// %z is unsupported on Windows platform // %z is unsupported on Windows platform
TIME_ZONE_INFORMATION l_tz_info; TIME_ZONE_INFORMATION l_tz_info;
GetTimeZoneInformation(&l_tz_info); GetTimeZoneInformation(&l_tz_info);
char l_tz_str[8] = { '\0' }; char l_tz_str[8];
snprintf(l_tz_str, sizeof(l_tz_str), " +%02d%02d", -(l_tz_info.Bias / 60), l_tz_info.Bias % 60); snprintf(l_tz_str, sizeof(l_tz_str), " +%02d%02d", -(l_tz_info.Bias / 60), l_tz_info.Bias % 60);
if (l_ret < a_out_size_max) if (l_ret < a_out_size_max)
l_ret += snprintf(a_out + l_ret, a_out_size_max - l_ret, l_tz_str); l_ret += snprintf(a_out + l_ret, a_out_size_max - l_ret, l_tz_str);
#endif #endif
a_out[l_ret] = '\0';
return l_ret; return l_ret;
} }
......
...@@ -553,8 +553,8 @@ void dap_http_client_write(dap_http_client_t *a_http_client) ...@@ -553,8 +553,8 @@ void dap_http_client_write(dap_http_client_t *a_http_client)
a_http_client->reply_status_code, a_http_client->reply_reason_phrase[0] ? a_http_client->reply_status_code, a_http_client->reply_reason_phrase[0] ?
a_http_client->reply_reason_phrase : http_status_reason_phrase(a_http_client->reply_status_code) ); a_http_client->reply_reason_phrase : http_status_reason_phrase(a_http_client->reply_status_code) );
/* Write HTTP headres */ /* Write HTTP headres */
char l_buf[32]; char l_buf[DAP_TIME_STR_SIZE];
dap_time_to_str_rfc822( l_buf, sizeof(l_buf) - 1, time( NULL ) ); dap_time_to_str_rfc822( l_buf, DAP_TIME_STR_SIZE, time( NULL ) );
dap_http_header_add( &a_http_client->out_headers, "Date", l_buf ); dap_http_header_add( &a_http_client->out_headers, "Date", l_buf );
for ( dap_http_header_t *hdr = a_http_client->out_headers; hdr; hdr = a_http_client->out_headers ) { for ( dap_http_header_t *hdr = a_http_client->out_headers; hdr; hdr = a_http_client->out_headers ) {
......
...@@ -53,6 +53,7 @@ void dap_json_rpc_params_add_param(dap_json_rpc_params_t *a_params, dap_json_rpc ...@@ -53,6 +53,7 @@ void dap_json_rpc_params_add_param(dap_json_rpc_params_t *a_params, dap_json_rpc
{ {
dap_json_rpc_param_t **new_params = DAP_REALLOC_COUNT_RET_IF_FAIL(a_params->params, a_params->length + 1); dap_json_rpc_param_t **new_params = DAP_REALLOC_COUNT_RET_IF_FAIL(a_params->params, a_params->length + 1);
new_params[a_params->length] = a_param; new_params[a_params->length] = a_param;
a_params->params = new_params;
++a_params->length; ++a_params->length;
} }
......
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