summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/encoding.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/encoding.c b/lib/encoding.c
index 432da4e..2c129b8 100644
--- a/lib/encoding.c
+++ b/lib/encoding.c
@@ -538,7 +538,9 @@ encoding_resolve_font_substitute (struct a2ps_job * job,
{
/* Find if there is a substitute for that font */
res = pair_get (encoding->substitutes, font_name);
- if (!res)
+ if (res)
+ res = xstrdup (res);
+ else
/* No. Check if this font is supported */
if (font_exists (job, font_name))
/* Avoid returning sth alloca'd */