fix: fix error when " not pair

This commit is contained in:
iridiumR 2023-03-30 18:36:56 +08:00
parent bf9d74db8e
commit 58bc0c37d1
No known key found for this signature in database
GPG Key ID: 49735733EB1A32C8
1 changed files with 12 additions and 13 deletions

25
line.c
View File

@ -42,29 +42,28 @@ char **splitLine(char *line) {
int pair_flag = 0;
while (1) {
token = strtok(NULL, " \t\r\n\a");
if (token[strlen(token) - 1] == '"') {
if (token == NULL && pair_flag == 0) {
fprintf(stderr, "error: no pair \"\n");
return NULL;
}
/*if there exists a pair of "", break the loop*/
if ((strlen(token)>1 && token[strlen(token) - 1] == '"') || (strlen(token)==1 && token[0] == '"')) {
/*delete the last " */
token[strlen(token) - 1] = '\0';
strcat(temp, " ");
strcat(temp, token);
token=temp;
token = temp;
pair_flag = 1;
break;
} else {
strcat(temp, " ");
strcat(temp, token);
pair_flag = 1;
}
if(token==NULL&&pair_flag==0){
fprintf(stderr,"error: no pair \"\n");
return NULL;
}
}
}
else
{
char* temp=malloc(bufsize * sizeof(char *));
strcpy(temp,token);
token=temp;
} else {
char *temp = malloc(bufsize * sizeof(char *));
strcpy(temp, token);
token = temp;
}
tokens[position] = token;
#ifdef DEBUG