Patch bug jour 4 close #1

This commit is contained in:
Rick 2020-12-14 11:42:31 +01:00
parent a177570799
commit aa6026a145
Signed by: Rick
GPG key ID: 9570A7DB7CB2F436

View file

@ -8,9 +8,9 @@ void deux_partie(FILE *ptr)
{ {
int find = 0, tmp, check_line; int find = 0, tmp, check_line;
int nb_data = 0; // est incrémenté si arg bon int nb_data = 0; // est incrémenté si arg bon
char key[3];
char value[10]; char value[10];
char *tmpChar = NULL; char key[3];
char *tmp_char = NULL;
fscanf(ptr, "%s:%s", key, value); fscanf(ptr, "%s:%s", key, value);
while (!feof(ptr)) while (!feof(ptr))
@ -49,8 +49,8 @@ void deux_partie(FILE *ptr)
} }
else if (!strncmp(key, "pid", 3)) else if (!strncmp(key, "pid", 3))
{ {
tmpChar = strpbrk(value, "0123456789"); tmp_char = strpbrk(value, "0123456789");
if (strspn(tmpChar, "0123456789") == 9) if (strspn(tmp_char, "0123456789") == 9)
nb_data++; nb_data++;
} }
else if (!strncmp(key, "hcl", 3)) else if (!strncmp(key, "hcl", 3))