mtg: docg3: potential divide by zero in doc_write_oob()
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 29 Nov 2012 14:16:51 +0000 (17:16 +0300)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Mon, 10 Dec 2012 13:28:49 +0000 (15:28 +0200)
If we set oobdelta to zero then we will either return -EINVAL or hit
a divide (modulus) by zero on the next line when we check
"(ooblen % oobdelta)".  It's better to just return -EINVAL here instead.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>

No differences found