summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Taubert <ttaubert@mozilla.com>2016-04-27 15:32:03 +0200
committerTim Taubert <ttaubert@mozilla.com>2016-04-27 15:32:03 +0200
commit2c3845e519b15b1a6623194aaac2c802ef9b7639 (patch)
tree448288460d3f7031ef70bec1e4d84d6f458b506a
parent11b5666a97d46b61d2df48c9bd4887f73d92ce7b (diff)
downloadnss-hg-2c3845e519b15b1a6623194aaac2c802ef9b7639.tar.gz
Bug 1259057 - Remove ifdef'ed out s_mp_clamp() call at the end of s_mp_rshd() r=franziskus
-rw-r--r--lib/freebl/mpi/mpi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/freebl/mpi/mpi.c b/lib/freebl/mpi/mpi.c
index 5cb8da2a2..3e9beb346 100644
--- a/lib/freebl/mpi/mpi.c
+++ b/lib/freebl/mpi/mpi.c
@@ -2986,11 +2986,6 @@ void s_mp_rshd(mp_int *mp, mp_size p)
while (p-- > 0)
*dst++ = 0;
-#if 0
- /* Strip off any leading zeroes */
- s_mp_clamp(mp);
-#endif
-
} /* end s_mp_rshd() */
/* }}} */