rsaenh: Remove superfluous casts of zero.

Michael Stefaniuc mstefani at redhat.de
Sun Mar 28 16:50:48 CDT 2010


sha1sum of sha2.o is the same with or without the patch.
---
 dlls/rsaenh/sha2.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/rsaenh/sha2.c b/dlls/rsaenh/sha2.c
index d15e6fb..6c1a2e6 100644
--- a/dlls/rsaenh/sha2.c
+++ b/dlls/rsaenh/sha2.c
@@ -582,7 +582,7 @@ char *SHA256_End(SHA256_CTX* context, char buffer[]) {
 			*buffer++ = sha2_hex_digits[*d & 0x0f];
 			d++;
 		}
-		*buffer = (char)0;
+		*buffer = 0;
 	} else {
 		MEMSET_BZERO(context, sizeof(context));
 	}
@@ -911,7 +911,7 @@ char *SHA512_End(SHA512_CTX* context, char buffer[]) {
 			*buffer++ = sha2_hex_digits[*d & 0x0f];
 			d++;
 		}
-		*buffer = (char)0;
+		*buffer = 0;
 	} else {
 		MEMSET_BZERO(context, sizeof(context));
 	}
@@ -986,7 +986,7 @@ char *SHA384_End(SHA384_CTX* context, char buffer[]) {
 			*buffer++ = sha2_hex_digits[*d & 0x0f];
 			d++;
 		}
-		*buffer = (char)0;
+		*buffer = 0;
 	} else {
 		MEMSET_BZERO(context, sizeof(context));
 	}
-- 
1.7.0.2



More information about the wine-patches mailing list