| 944 | memset(p, 0, sizeof(*p)); |
| 945 | } |
| 946 | static void freeText(ShellText *p){ |
| 947 | free(p->z); |
| 948 | initText(p); |
| 949 | } |
| 950 | |
| 951 | /* zIn is either a pointer to a NULL-terminated string in memory obtained |
| 952 | ** from malloc(), or a NULL pointer. The string pointed to by zAppend is |
no test coverage detected