1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00
This commit is contained in:
Julian Storer 2010-03-12 10:19:33 +00:00
parent e07c59c8f4
commit 605e06946f
3 changed files with 4 additions and 4 deletions

View file

@ -4677,7 +4677,7 @@ void MD5::ProcessContext::finish (uint8* const result)
processBlock (encodedLength, 8);
MD5Functions::encode (result, state, sizeof (result));
MD5Functions::encode (result, state, 16);
zerostruct (buffer);
}
@ -81158,7 +81158,7 @@ private:
PixelRGB filler [4];
bool areRGBComponentsEqual;
inline void blendLine (PixelType* dest, const PixelARGB& colour, int width) const
inline void blendLine (PixelType* dest, const PixelARGB& colour, int width) const throw()
{
do
{

View file

@ -243,7 +243,7 @@ void MD5::ProcessContext::finish (uint8* const result)
processBlock (encodedLength, 8);
MD5Functions::encode (result, state, sizeof (result));
MD5Functions::encode (result, state, 16);
zerostruct (buffer);
}

View file

@ -103,7 +103,7 @@ private:
PixelRGB filler [4];
bool areRGBComponentsEqual;
inline void blendLine (PixelType* dest, const PixelARGB& colour, int width) const
inline void blendLine (PixelType* dest, const PixelARGB& colour, int width) const throw()
{
do
{