comparison OrthancServer/Sources/ServerIndex.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 7c9ff821063a
children 0ddc5297a8ab
comparison
equal deleted inserted replaced
4138:1a26daefc3fe 4139:a4f28efdfccf
2466 2466
2467 2467
2468 void ServerIndex::ReconstructInstance(ParsedDicomFile& dicom) 2468 void ServerIndex::ReconstructInstance(ParsedDicomFile& dicom)
2469 { 2469 {
2470 DicomMap summary; 2470 DicomMap summary;
2471 dicom.ExtractDicomSummary(summary); 2471 dicom.ExtractDicomSummary(summary, ORTHANC_MAXIMUM_TAG_LENGTH);
2472 2472
2473 DicomInstanceHasher hasher(summary); 2473 DicomInstanceHasher hasher(summary);
2474 2474
2475 boost::mutex::scoped_lock lock(mutex_); 2475 boost::mutex::scoped_lock lock(mutex_);
2476 2476