mod_http_cache: remove unnecessary memset() now that switch_b64_encode() is fixed

This commit is contained in:
Chris Rienzo 2013-05-22 08:22:04 -04:00 committed by Travis Cross
parent 168b691d89
commit 802dd96233
1 changed files with 0 additions and 1 deletions

View File

@ -100,7 +100,6 @@ char *aws_s3_signature(char *signature, int signature_length, const char *string
&signature_raw_length);
/* convert result to base64 */
memset(signature, 0, signature_length);
switch_b64_encode((unsigned char *)signature_raw, signature_raw_length, (unsigned char *)signature, signature_length);
#endif
return signature;