mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed some stray zeros that were still being passed as null pointers
This commit is contained in:
parent
1eb3de3312
commit
6fda0bffca
54 changed files with 237 additions and 221 deletions
|
|
@ -28,7 +28,7 @@ png_set_sig_bytes(png_structrp png_ptr, int num_bytes)
|
|||
{
|
||||
png_debug(1, "in png_set_sig_bytes");
|
||||
|
||||
if (png_ptr == NULL)
|
||||
if (png_ptr == NULL)
|
||||
return;
|
||||
|
||||
if (num_bytes > 8)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue