From 1aa3d763092702a85c307dccd1919a5aef4bafff Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Tue, 21 Jun 2011 07:37:28 +0000
Subject: [PATCH] - Fixed a missing t_udbl conversion
---
include/polarssl/bn_mul.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/polarssl/bn_mul.h b/include/polarssl/bn_mul.h
index e33c6339c..59a32857c 100644
--- a/include/polarssl/bn_mul.h
+++ b/include/polarssl/bn_mul.h
@@ -697,7 +697,7 @@
t_uint r0, r1;
#define MULADDC_CORE \
- r = *(s++) * (t_dbl) b; \
+ r = *(s++) * (t_udbl) b; \
r0 = r; \
r1 = r >> biL; \
r0 += c; r1 += (r0 < c); \