From d15d7d8f9d4f7bf095cfa0609b0f4bf9a4e4b5b3 Mon Sep 17 00:00:00 2001 From: Hualing Chen Date: Wed, 27 Dec 2017 07:30:51 +0000 Subject: PD#157646: libzvbi: fixed character space error. 1.fixed character space error. Change-Id: Ifdaf23d1b6572408fbebb7b4048f0690f532e23f Signed-off-by: Hualing Chen --- diff --git a/src/caption.c b/src/caption.c index 110175a..b52968c 100644 --- a/src/caption.c +++ b/src/caption.c @@ -1046,6 +1046,14 @@ caption_command(vbi_decoder *vbi, struct caption *cc, } } else { /* Midrow Codes 001 c001 010 xxxu */ // not verified + vbi_char c = ch->attr; + + c.flash = FALSE; + c.underline = FALSE; + c.unicode = ' '; + + put_char(cc, ch, c); + ch->attr.flash = FALSE; ch->attr.underline = c2 & 1; -- cgit