encode double quote in dict

This commit is contained in:
vanhauser-thc 2021-02-23 10:06:15 +01:00
parent 4ab90e739f
commit 2daeeab844

View File

@ -90,7 +90,7 @@ void dict2file(int fd, u8 *mem, u32 len) {
j = 1;
for (i = 0; i < len; i++) {
if (isprint(mem[i]) && mem[i] != '\\') {
if (isprint(mem[i]) && mem[i] != '\\' && mem[i] != '"') {
line[j++] = mem[i];