Skip to content

Commit

Permalink
altrace: Fixed literal string output during log playback.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 16, 2019
1 parent 2e41391 commit 992649b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions altrace/altrace_playback.c
Expand Up @@ -494,6 +494,8 @@ static const char *litString(const char *str)
} else if (ch == '"') {
*(ptr++) = '\\';
*(ptr++) = '"';
} else {
*(ptr++) = ch;
}
}
return retval;
Expand Down

0 comments on commit 992649b

Please sign in to comment.