IntOrString initialization

This commit is contained in:
Hui Yu
2021-12-21 19:47:08 +08:00
parent a4fc03ce10
commit e658377db1

View File

@@ -10,6 +10,7 @@ int_or_string_t *int_or_string_create()
return NULL;
}
ios->type = IOS_DATA_TYPE_INT;
ios->s = NULL;
return ios;
}