From eeafa174603f3c880e4496cd5d7f5a9cfa587ebe Mon Sep 17 00:00:00 2001 From: jpr Date: Fri, 1 Jul 2005 11:25:51 +0000 Subject: [PATCH] Initialize RLEInfo and JPEGInfo to 0 a avoid further problems (e.g. PrintFile on a DICOMDIR document) --- src/gdcmPixelReadConvert.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gdcmPixelReadConvert.cxx b/src/gdcmPixelReadConvert.cxx index c2030a43..9b97cbb1 100644 --- a/src/gdcmPixelReadConvert.cxx +++ b/src/gdcmPixelReadConvert.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmPixelReadConvert.cxx,v $ Language: C++ - Date: $Date: 2005/06/30 14:50:05 $ - Version: $Revision: 1.73 $ + Date: $Date: 2005/07/01 11:25:51 $ + Version: $Revision: 1.74 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -50,6 +50,8 @@ PixelReadConvert::PixelReadConvert() LutRedData = 0; LutGreenData = 0; LutBlueData = 0; + RLEInfo = 0; + JPEGInfo = 0; } /// Canonical Destructor -- 2.48.1