Skip to content
Snippets Groups Projects
Commit 4bd39379 authored by rswindell's avatar rswindell
Browse files

Handle unit=0 in Read/Get/SetBytes functions.

parent 54cbb268
No related branches found
No related tags found
No related merge requests found
......@@ -420,6 +420,8 @@ char* iniSetBytes(str_list_t* list, const char* section, const char* key, ulong
char str[INI_MAX_VALUE_LEN];
double bytes;
if(unit<1)
unit=1;
bytes=value*unit;
if(bytes>=(1024*1024*1024))
......@@ -967,7 +969,7 @@ static ulong parseBytes(const char* value, ulong unit)
break;
}
}
return((ulong)(bytes/unit));
return((ulong)(unit>1 ? (bytes/unit):bytes));
}
ulong iniReadBytes(FILE* fp, const char* section, const char* key, ulong unit, ulong deflt)
......
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