Skip to content
Snippets Groups Projects
Commit 928f811d authored by juhosg's avatar juhosg
Browse files

kernel: check return code of nla_parse in pcomp_lzma on 2.6.31

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17683 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 6a36104f
No related branches found
No related tags found
No related merge requests found
--- /dev/null
+++ b/crypto/unlzma.c
@@ -0,0 +1,772 @@
@@ -0,0 +1,775 @@
+/*
+ * LZMA uncompresion module for pcomp
+ * Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
......@@ -636,6 +636,9 @@
+ return -EINVAL;
+
+ ret = nla_parse(tb, UNLZMA_DECOMP_MAX, p, len, NULL);
+ if (ret)
+ return ret;
+
+ if (!tb[UNLZMA_DECOMP_OUT_BUFFERS])
+ return -EINVAL;
+
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment