source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: Fix handling of escape sequences taking numeric arguments.
@ 2014-07-06 18:37 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2014-07-06 18:37 UTC (permalink / raw)
  To: source

Log Message:
-----------
Fix handling of escape sequences taking numeric arguments.
* Repair detection of invalid delimiters.
* Discard the invalid delimiter together with the invalid sequence.

Note to self: In general, strchr("\0...", c) is a thoroughly bad idea.

Modified Files:
--------------
    mdocml:
        mandoc.c

Revision Data
-------------
Index: mandoc.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mandoc.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -Lmandoc.c -Lmandoc.c -u -p -r1.81 -r1.82
--- mandoc.c
+++ mandoc.c
@@ -200,8 +200,10 @@ mandoc_escape(const char **end, const ch
 	case 'v':
 		/* FALLTHROUGH */
 	case 'x':
-		if (strchr("\0 %&()*+-./0123456789:<=>", **start))
+		if (strchr(" %&()*+-./0123456789:<=>", **start)) {
+			++*end;
 			return(ESCAPE_ERROR);
+		}
 		gly = ESCAPE_IGNORE;
 		term = **start;
 		*start = ++*end;
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-07-06 18:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-06 18:37 mdocml: Fix handling of escape sequences taking numeric arguments schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).