From: malaterre Date: Fri, 14 Jan 2005 17:34:42 +0000 (+0000) Subject: BUG: Try to fix JP patch... again X-Git-Tag: Version1.0.bp~335 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=8cb0bec310a0ac61e68ded4308db8b8a2386bdf3;p=gdcm.git BUG: Try to fix JP patch... again --- diff --git a/src/gdcmBinEntry.cxx b/src/gdcmBinEntry.cxx index 35bdf16a..85738b68 100644 --- a/src/gdcmBinEntry.cxx +++ b/src/gdcmBinEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmBinEntry.cxx,v $ Language: C++ - Date: $Date: 2005/01/14 17:33:24 $ - Version: $Revision: 1.48 $ + Date: $Date: 2005/01/14 17:34:42 $ + Version: $Revision: 1.49 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -133,11 +133,11 @@ void BinEntry::WriteContent(std::ofstream *fp, FileType filetype) // -value forced while Reading process- if (GetGroup() == 0x7fe0 && GetVR() == "OW") { - unit16_t *currPosition = (uint16_t *)binArea; + uint16_t *currPosition = (uint16_t *)binArea; // TODO FIXME : Maybe we should allocate somewhere a static buffer, // in order not to have to alloc/delete for almost every BinEntry ... - unit16_t *buffer = new uint16[BUFFER_SIZE]; + uint16_t *buffer = new uint16[BUFFER_SIZE]; // how many BUFFER_SIZE long pieces in binArea ? int nbPieces = lgr/BUFFER_SIZE/2; //(16 bits = 2 Bytes)