coverity#708673 Uninitialized pointer field
Change-Id: I4aa47c46b609236c72e4a3e579876da7330b2024
This commit is contained in:
@@ -178,10 +178,24 @@ PrinterJob::GetCurrentPageBody ()
|
|||||||
* public methods of PrinterJob: the actual job / spool handling
|
* public methods of PrinterJob: the actual job / spool handling
|
||||||
*/
|
*/
|
||||||
|
|
||||||
PrinterJob::PrinterJob () :
|
PrinterJob::PrinterJob ()
|
||||||
mpJobHeader( NULL ),
|
: mnFileMode(0)
|
||||||
mpJobTrailer( NULL ),
|
, mpJobHeader(NULL)
|
||||||
m_bQuickJob( false )
|
, mpJobTrailer(NULL)
|
||||||
|
, mnResolution(96)
|
||||||
|
, mnWidthPt(0)
|
||||||
|
, mnHeightPt(0)
|
||||||
|
, mnMaxWidthPt(0)
|
||||||
|
, mnMaxHeightPt(0)
|
||||||
|
, mnLandscapes(0)
|
||||||
|
, mnPortraits(0)
|
||||||
|
, mnLMarginPt(0)
|
||||||
|
, mnRMarginPt(0)
|
||||||
|
, mnTMarginPt(0)
|
||||||
|
, mnBMarginPt(0)
|
||||||
|
, mfXScale(1)
|
||||||
|
, mfYScale(1)
|
||||||
|
, m_bQuickJob(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user