Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/PngChunkReader.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/PngChunkReader.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/PngChunkReader.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/PngChunkReader.java
index f16656293b..15f4777990 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/PngChunkReader.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/PngChunkReader.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -29,6 +29,7 @@ PngIhdrChunk getIhdrChunk() {
if (headerChunk == null) {
try {
PngChunk chunk = PngChunk.readNextFromStream(inputStream);
+ if (chunk == null) SWT.error(SWT.ERROR_INVALID_IMAGE);
headerChunk = (PngIhdrChunk) chunk;
headerChunk.validate(readState, null);
} catch (ClassCastException e) {
@@ -42,6 +43,7 @@ PngChunk readNextChunk() {
if (headerChunk == null) return getIhdrChunk();
PngChunk chunk = PngChunk.readNextFromStream(inputStream);
+ if (chunk == null) SWT.error(SWT.ERROR_INVALID_IMAGE);
switch (chunk.getChunkType()) {
case PngChunk.CHUNK_tRNS:
((PngTrnsChunk) chunk).validate(readState, headerChunk, paletteChunk);

Back to the top