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

Resolve Borland 'Unreachable code' warning

Warning W8066 .\ini_file.c 416: Unreachable code in function iniRemoveKey
parent 239dfdfe
No related branches found
No related tags found
No related merge requests found
......@@ -407,7 +407,7 @@ BOOL iniRemoveKey(str_list_t* list, const char* section, const char* key)
i=get_value(*list, section, key, NULL, &vp, /* literals_supported: */FALSE);
if(vp==NULL)
return removed;
break;
if(!strListDelete(list,i))
return FALSE;
......
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