X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/fa7225c82381bac4432a6edf16f53b5370238d85..dd5fb164cf5b32c462296bc65e289e100f74b59a:/OSX/libsecurity_cryptkit/lib/giantIntegers.c diff --git a/OSX/libsecurity_cryptkit/lib/giantIntegers.c b/OSX/libsecurity_cryptkit/lib/giantIntegers.c index 734ab60e..d5a19537 100644 --- a/OSX/libsecurity_cryptkit/lib/giantIntegers.c +++ b/OSX/libsecurity_cryptkit/lib/giantIntegers.c @@ -1047,7 +1047,6 @@ void gshiftleft(int bits, giant g) { if(!size) return; if((size+digits) > (int)g->capacity) { CKRaise("gshiftleft overflow"); - return; } k = size - 1 + digits; // (MSD of result + 1) carry = 0;