修复了PrintState函数中字符串数组未加终止符的问题
This commit is contained in:
parent
d96c174703
commit
8485eef361
|
@ -162,7 +162,10 @@ void PrintState(char *str)
|
||||||
clockwise[count] = '0';
|
clockwise[count] = '0';
|
||||||
counterclockwise[count] = '0';
|
counterclockwise[count] = '0';
|
||||||
} //遍历轨道链表,将所有站点初始化为0,即:无任何请求;
|
} //遍历轨道链表,将所有站点初始化为0,即:无任何请求;
|
||||||
|
target[count] = '\0';
|
||||||
|
clockwise[count] = '\0';
|
||||||
|
counterclockwise[count] = '\0';
|
||||||
|
|
||||||
bus_query_t *t = NULL;
|
bus_query_t *t = NULL;
|
||||||
int i;
|
int i;
|
||||||
for (t = queries; t != NULL; t = t->next_node)
|
for (t = queries; t != NULL; t = t->next_node)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user