From 1cccd005fee12160aa238506c1dbfb9ce582ed54 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 8 Apr 2007 05:47:32 +0000 Subject: [PATCH] silly me. totally misused the result of PR_NewMutableString --- qw/source/sv_pr_cpqw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/sv_pr_cpqw.c b/qw/source/sv_pr_cpqw.c index eda57e1df..13c907019 100644 --- a/qw/source/sv_pr_cpqw.c +++ b/qw/source/sv_pr_cpqw.c @@ -448,7 +448,7 @@ static void PF_makestr (progs_t *pr) { string_t res = PR_NewMutableString (pr); - dstring_t *dst = P_DSTRING (pr, res); + dstring_t *dst = PR_GetMutableString (pr, res); const char *src = P_GSTRING (pr, 0); dstring_copystr (dst, src);