removed debugger call

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7272 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2004-04-21 00:08:28 +00:00
parent 1c47da1361
commit e2ed67d283

View File

@ -139,10 +139,7 @@ BPositionIO *
get_pio(png_structp ppng)
{
BPositionIO *pio = NULL;
pio = static_cast<BPositionIO *>(png_get_io_ptr(ppng));
if (!pio)
debugger("pio is NULL");
pio = static_cast<BPositionIO *>(png_get_io_ptr(ppng));
return pio;
}