Skip to content
Snippets Groups Projects
Commit c0f77e5c 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 39d13a5c
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -407,7 +407,7 @@ BOOL iniRemoveKey(str_list_t* list, const char* section, const char* key) ...@@ -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); i=get_value(*list, section, key, NULL, &vp, /* literals_supported: */FALSE);
if(vp==NULL) if(vp==NULL)
return removed; break;
if(!strListDelete(list,i)) if(!strListDelete(list,i))
return FALSE; return FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment