| 817 | memset(p, 0, sizeof(*p)); |
| 818 | } |
| 819 | static void freeText(ShellText *p){ |
| 820 | free(p->z); |
| 821 | initText(p); |
| 822 | } |
| 823 | |
| 824 | /* zIn is either a pointer to a NULL-terminated string in memory obtained |
| 825 | ** from malloc(), or a NULL pointer. The string pointed to by zAppend is |
no test coverage detected