From: jpr Date: Tue, 20 Sep 2005 09:24:10 +0000 (+0000) Subject: remove useless assignation, to avoid warning X-Git-Tag: Version1.2.bp~75 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=22075f2f8d1da63aaed511defa7f40e8f6a2edb5;p=gdcm.git remove useless assignation, to avoid warning --- diff --git a/src/gdcmJpeg2000.cxx b/src/gdcmJpeg2000.cxx index 079e58a9..5bcb13ea 100644 --- a/src/gdcmJpeg2000.cxx +++ b/src/gdcmJpeg2000.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmJpeg2000.cxx,v $ Language: C++ - Date: $Date: 2005/07/11 18:10:29 $ - Version: $Revision: 1.27 $ + Date: $Date: 2005/09/20 09:24:10 $ + Version: $Revision: 1.28 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -53,7 +53,7 @@ bool gdcm_read_JPEG2000_file (void* raw, char *inputdata, size_t inputlength) } // Decode the image. - jas_image_t *jasImage = NULL; + jas_image_t *jasImage /* = NULL*/; // Useless assignation if (!(jasImage = jas_image_decode(jasStream, fmtid, 0))) { gdcmErrorMacro("cannot decode image");