summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-02-09 13:07:14 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-02-09 13:07:14 +0000
commitb50871372a10a09f3720b1919399fd3a1bcd0833 (patch)
tree7bcae33f386f3288ff6b0fb032dfceb25bd84590 /goodies
parentc1de83986f390aef7145d1c3d716dac5892dbff8 (diff)
INTEGRATION: CWS impress84 (1.6.54); FILE MERGED
2006/01/27 18:32:58 sj 1.6.54.1: #123030# not accessing invalid row number
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/ipsd/ipsd.cxx32
1 files changed, 30 insertions, 2 deletions
diff --git a/goodies/source/filter.vcl/ipsd/ipsd.cxx b/goodies/source/filter.vcl/ipsd/ipsd.cxx
index 8af0ac0b020c..cd4d909d2949 100644
--- a/goodies/source/filter.vcl/ipsd/ipsd.cxx
+++ b/goodies/source/filter.vcl/ipsd/ipsd.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ipsd.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 03:00:53 $
+ * last change: $Author: rt $ $Date: 2006-02-09 14:07:14 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -408,6 +408,8 @@ BOOL PSDReader::ImplReadBody()
nX = 0;
nY++;
nBitCount = -1;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -427,6 +429,8 @@ BOOL PSDReader::ImplReadBody()
nX = 0;
nY++;
nBitCount = -1;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -453,6 +457,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -468,6 +474,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -498,6 +506,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -513,6 +523,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -535,6 +547,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -551,6 +565,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -573,6 +589,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -589,6 +607,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -626,6 +646,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -651,6 +673,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -701,6 +725,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}
@@ -720,6 +746,8 @@ BOOL PSDReader::ImplReadBody()
{
nX = 0;
nY++;
+ if ( nY == mpFileHeader->nRows )
+ break;
}
}
}