comparison OrthancServer/Sources/ServerJobs/MergeStudyJob.cpp @ 4139:a4f28efdfccf

"maxTagLength" must be explicitly given to ParsedDicomFile::ExtractDicomSummary()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 06 Aug 2020 18:25:47 +0200
parents 05b8fd21089c
children 0ddc5297a8ab
comparison
equal deleted inserted replaced
4138:1a26daefc3fe 4139:a4f28efdfccf
199 199
200 DicomMap dicom; 200 DicomMap dicom;
201 201
202 { 202 {
203 ServerContext::DicomCacheLocker locker(GetContext(), instances.front()); 203 ServerContext::DicomCacheLocker locker(GetContext(), instances.front());
204 locker.GetDicom().ExtractDicomSummary(dicom); 204 locker.GetDicom().ExtractDicomSummary(dicom, ORTHANC_MAXIMUM_TAG_LENGTH);
205 } 205 }
206 206
207 const std::set<DicomTag> moduleTags = removals_; 207 const std::set<DicomTag> moduleTags = removals_;
208 for (std::set<DicomTag>::const_iterator it = moduleTags.begin(); 208 for (std::set<DicomTag>::const_iterator it = moduleTags.begin();
209 it != moduleTags.end(); ++it) 209 it != moduleTags.end(); ++it)