openbsd-ports/devel/libyaml/patches/patch-src_scanner_c
2014-12-01 08:48:51 +00:00

22 lines
727 B
Plaintext

$OpenBSD: patch-src_scanner_c,v 1.4 2014/12/01 08:48:51 jasper Exp $
Security fix for CVE-2014-9130
https://marc.info/?l=oss-security&m=141715462623662&w=2
--- src/scanner.c.orig Thu Mar 27 05:54:02 2014
+++ src/scanner.c Sat Nov 29 16:10:33 2014
@@ -1106,13 +1106,6 @@ yaml_parser_save_simple_key(yaml_parser_t *parser)
&& parser->indent == (ptrdiff_t)parser->mark.column);
/*
- * A simple key is required only when it is the first token in the current
- * line. Therefore it is always allowed. But we add a check anyway.
- */
-
- assert(parser->simple_key_allowed || !required); /* Impossible. */
-
- /*
* If the current position may start a simple key, save it.
*/