git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-11-09 08:11:44 +00:00
Родитель 525cb66467
Коммит 5bde05f98f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -278,7 +278,7 @@ static inline void
int_sip_pad_final_block(sip_state *state)
{
int i;
//pad with 0's and finalize with msg_len mod 256
/* pad with 0's and finalize with msg_len mod 256 */
for (i = state->buflen; i < sizeof(uint64_t); i++) {
state->buf[i] = 0x00;
}