Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 144347 | Differences between
and this patch

Collapse All | Expand All

(-)/trunk/src/jpgimage.cpp (-3 / +4 lines)
Lines 313-321 Link Here
313
                uint32_t sizeHdr = 0;
313
                uint32_t sizeHdr = 0;
314
                // Find actual Iptc data within the APP13 segment
314
                // Find actual Iptc data within the APP13 segment
315
                if (!Photoshop::locateIptcIrb(psData.pData_, psData.size_,
315
                if (!Photoshop::locateIptcIrb(psData.pData_, psData.size_,
316
                                          &record, &sizeHdr, &sizeIptc)) {
316
                                              &record, &sizeHdr, &sizeIptc)) {
317
                    assert(sizeIptc);
317
                    if (sizeIptc) {
318
                    if (iptcData_.load(record + sizeHdr, sizeIptc)) throw Error(36, "IPTC");
318
                        if (iptcData_.load(record + sizeHdr, sizeIptc)) throw Error(36, "IPTC");
319
                    }
319
                }
320
                }
320
                --search;
321
                --search;
321
            }
322
            }

Return to bug 144347