mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 18:27:35 +00:00
Fix HP bustage due to old-style for-loop scoping.
This commit is contained in:
parent
ea3a95c49f
commit
4f54b05b1a
@ -1181,7 +1181,7 @@ scale_imageAntiJag(nsAntiAliasedGlyph *aSrc, nsAntiAliasedGlyph *aDst)
|
||||
horizontally_scaled_data = (PRUint8*)nsMemory::Alloc(hsd_len);
|
||||
memset(horizontally_scaled_data, 0, hsd_len);
|
||||
}
|
||||
for (PRUint32 i=0; i<hsd_len; i++)
|
||||
for (i=0; i<hsd_len; i++)
|
||||
horizontally_scaled_data[i] = 0;
|
||||
|
||||
PRUint32 len_x = src_width * expand;
|
||||
|
Loading…
Reference in New Issue
Block a user