comparison OrthancFramework/Sources/DicomNetworking/Internals/FindScp.cpp @ 4200:7112a8af0b63

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Sep 2020 20:53:31 +0200
parents 6774605d4341
children 4d42408da117
comparison
equal deleted inserted replaced
4199:fbc49a65340a 4200:7112a8af0b63
135 DcmDataset* lastRequest_; 135 DcmDataset* lastRequest_;
136 const std::string* remoteIp_; 136 const std::string* remoteIp_;
137 const std::string* remoteAet_; 137 const std::string* remoteAet_;
138 const std::string* calledAet_; 138 const std::string* calledAet_;
139 139
140 FindScpData() : answers_(false) 140 FindScpData() :
141 modalities_(NULL),
142 findHandler_(NULL),
143 worklistHandler_(NULL),
144 answers_(false),
145 lastRequest_(NULL),
146 remoteIp_(NULL),
147 remoteAet_(NULL),
148 calledAet_(NULL)
141 { 149 {
142 } 150 }
143 }; 151 };
144 152
145 153
146 154
147 static void FixWorklistQuery(ParsedDicomFile& query) 155 static void FixWorklistQuery(const ParsedDicomFile& query)
148 { 156 {
149 // TODO: Check out 157 // TODO: Check out
150 // WlmDataSourceFileSystem::HandleExistentButEmptyDescriptionAndCodeSequenceAttributes()" 158 // WlmDataSourceFileSystem::HandleExistentButEmptyDescriptionAndCodeSequenceAttributes()"
151 // in DCMTK 3.6.0 159 // in DCMTK 3.6.0
152 160