linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] lib/mpi: Fixed erroneous check on return value of mpi_resize()
@ 2012-05-05  1:51 Adarsh J
  2012-05-05  3:30 ` Tetsuo Handa
  2012-05-07 13:20 ` Kasatkin, Dmitry
  0 siblings, 2 replies; 4+ messages in thread
From: Adarsh J @ 2012-05-05  1:51 UTC (permalink / raw)
  To: Dmitry Kasatkin, James Morris, Tetsuo Handa, Mimi Zohar, David Howells
  Cc: linux-security-module, linux-kernel, Adarsh J

mpi_resize() returns -ENOMEM on error and 0 on success.

Signed-off-by: Adarsh J <root@hackmaster.in>
---
 lib/mpi/mpicoder.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/mpi/mpicoder.c b/lib/mpi/mpicoder.c
index f26b41f..9949b69 100644
--- a/lib/mpi/mpicoder.c
+++ b/lib/mpi/mpicoder.c
@@ -98,7 +98,7 @@ int mpi_fromstr(MPI val, const char *str)
 	nbytes = (nbits + 7) / 8;
 	nlimbs = (nbytes + BYTES_PER_MPI_LIMB - 1) / BYTES_PER_MPI_LIMB;
 	if (val->alloced < nlimbs)
-		if (!mpi_resize(val, nlimbs))
+		if (mpi_resize(val, nlimbs) < 0)
 			return -ENOMEM;
 	i = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
 	i %= BYTES_PER_MPI_LIMB;
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-05-07 13:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-05  1:51 [PATCH 1/1] lib/mpi: Fixed erroneous check on return value of mpi_resize() Adarsh J
2012-05-05  3:30 ` Tetsuo Handa
2012-05-07  1:26   ` James Morris
2012-05-07 13:20 ` Kasatkin, Dmitry

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).