Skip to content
Snippets Groups Projects
Commit 08ab80e5 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix warning about potential uninitialize variable value use

parent 1e30330a
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
Pipeline #6459 failed
......@@ -1364,7 +1364,7 @@ BOOL hangup_call(COM_HANDLE com_handle)
{
time_t start;
int attempt;
int mdm_status;
int mdm_status = -1;
if(dcd_ignore || !carrier_detect(com_handle))/* DCD already low */
return TRUE;
......
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