From cb496e1f12269ac3f832f9d7007fd6651c3cce6c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 13 Mar 2007 00:19:26 +0000 Subject: [PATCH] zero byte idea by rich Originally committed as revision 8368 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/sha1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/sha1.c b/libavutil/sha1.c index f6bfd863a..996ddd114 100644 --- a/libavutil/sha1.c +++ b/libavutil/sha1.c @@ -163,7 +163,7 @@ void av_sha1_final(AVSHA1* context, uint8_t digest[20]){ av_sha1_update(context, "\200", 1); while ((context->count & 63) != 56) { - av_sha1_update(context, "\0", 1); + av_sha1_update(context, "", 1); } av_sha1_update(context, &finalcount, 8); /* Should cause a transform() */ for(i=0; i<5; i++) -- 2.11.0