Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283249
b: refs/heads/master
c: fe0e94c
h: refs/heads/master
i:
  283247: 7ece467
v: v3
  • Loading branch information
Dan Carpenter authored and James Morris committed Dec 7, 2011
1 parent 5061cbe commit 575ee1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de353533753e048b5c4658f0a42365937527ac45
refs/heads/master: fe0e94c5a7e5335ba0d200e7d3e26e9f80cda4b1
3 changes: 2 additions & 1 deletion trunk/lib/mpi/mpi-mpow.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ int mpi_mulpowm(MPI res, MPI *basearray, MPI *exparray, MPI m)

G = kzalloc((1 << k) * sizeof *G, GFP_KERNEL);
if (!G)
goto nomem;
goto err_out;

/* and calculate */
tmp = mpi_alloc(mpi_get_nlimbs(m) + 1);
Expand Down Expand Up @@ -129,5 +129,6 @@ int mpi_mulpowm(MPI res, MPI *basearray, MPI *exparray, MPI m)
for (i = 0; i < (1 << k); i++)
mpi_free(G[i]);
kfree(G);
err_out:
return rc;
}

0 comments on commit 575ee1d

Please sign in to comment.