blob: 5f90fec6536293bb754995d2e7ed2d70ada46527 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- imagepool/poolmoveassociation.cpp.orig 2018-12-12 23:21:04 UTC
+++ imagepool/poolmoveassociation.cpp
@@ -310,7 +310,7 @@ void MoveAssociation::storeSCPCallback(v
*/
if (rsp->DimseStatus == STATUS_Success) {
/* which SOP class and SOP instance ? */
- if (! DU_findSOPClassAndInstanceInDataSet(cbdata->dataset, sopClass, sopInstance)) {
+ if (! DU_findSOPClassAndInstanceInDataSet(cbdata->dataset, sopClass, strlen(sopClass), sopInstance, strlen(sopInstance))) {
rsp->DimseStatus = STATUS_STORE_Error_CannotUnderstand;
}
else if (strcmp(sopClass, req->AffectedSOPClassUID) != 0) {
|