From cb496e1f12269ac3f832f9d7007fd6651c3cce6c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 13 Mar 2007 00:19:26 +0000 Subject: 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(-) (limited to 'libavutil/sha1.c') diff --git a/libavutil/sha1.c b/libavutil/sha1.c index f6bfd863a9..996ddd1140 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++) -- cgit v1.2.3