about summary refs log tree commit diff
path: root/pkgs/development/libraries/libyaml/cve-2013-6393_a.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libyaml/cve-2013-6393_a.patch')
-rw-r--r--pkgs/development/libraries/libyaml/cve-2013-6393_a.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/development/libraries/libyaml/cve-2013-6393_a.patch b/pkgs/development/libraries/libyaml/cve-2013-6393_a.patch
deleted file mode 100644
index 130107341f7f2..0000000000000
--- a/pkgs/development/libraries/libyaml/cve-2013-6393_a.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/scanner.c	
-+++ a/src/scanner.c	
-@@ -2574,7 +2574,7 @@ 
- 
-     /* Resize the string to include the head. */
- 
--    while (string.end - string.start <= (int)length) {
-+    while ((size_t)(string.end - string.start) <= length) {
-         if (!yaml_string_extend(&string.start, &string.pointer, &string.end)) {
-             parser->error = YAML_MEMORY_ERROR;
-             goto error;