FIXWARN : Provided limits to sscanf(), reduced scope of cache_enabled.
This commit is contained in:
parent
1ad023f49c
commit
aa4a14998f
1 changed files with 5 additions and 3 deletions
|
@ -122,11 +122,13 @@ void remove_brackets(char *str);
|
|||
int main(int argc, char *argv[])
|
||||
{
|
||||
char *cache_env = getenv("UWUFETCH_CACHE_ENABLED");
|
||||
int cache_enabled = 0;
|
||||
if (cache_env != NULL)
|
||||
{
|
||||
|
||||
int cache_enabled = 0;
|
||||
char buffer[128];
|
||||
sscanf(cache_env, "%[TRUEtrue1]", buffer);
|
||||
|
||||
sscanf(cache_env, "%1[TRUEtrue1]", buffer);
|
||||
cache_enabled = (strcmp(buffer, "true") == 0 || strcmp(buffer, "TRUE") == 0 || strcmp(buffer, "1") == 0);
|
||||
if (cache_enabled)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue