| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/fpdfapi/page/cpdf_imageobject.h" | 7 #include "core/fpdfapi/page/cpdf_imageobject.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 delete m_pImage; | 72 delete m_pImage; |
| 73 m_pImage = nullptr; | 73 m_pImage = nullptr; |
| 74 m_pImageOwned = false; | 74 m_pImageOwned = false; |
| 75 return; | 75 return; |
| 76 } | 76 } |
| 77 | 77 |
| 78 if (!m_pImage) | 78 if (!m_pImage) |
| 79 return; | 79 return; |
| 80 | 80 |
| 81 CPDF_DocPageData* pPageData = m_pImage->GetDocument()->GetPageData(); | 81 CPDF_DocPageData* pPageData = m_pImage->GetDocument()->GetPageData(); |
| 82 pPageData->ReleaseImage(m_pImage->GetStream()); | 82 pPageData->ReleaseImage(m_pImage->GetStream()->GetObjNum()); |
| 83 m_pImage = nullptr; | 83 m_pImage = nullptr; |
| 84 } | 84 } |
| OLD | NEW |