Shell-escape proper metachars before popening

This commit is contained in:
Ron Pedde 2005-11-19 09:02:13 +00:00
parent 6dba7aab41
commit d4dfc17671

View File

@ -84,7 +84,7 @@ FILE *server_side_convert_open(char *path, off_t offset, unsigned long len_ms) {
char *cmd;
FILE *f;
char *newpath;
char *metachars = "\"();"; /* More?? */
char *metachars = "\"$`\\"; /* More?? */
char metacount = 0;
char *src,*dst;