deletion of retval in getdatafrom, client

This commit is contained in:
Dhanya Maliakal 2016-11-07 17:57:03 +01:00
parent 39a2317d8d
commit 52cf790dde
2 changed files with 5 additions and 4 deletions

View File

@ -1438,8 +1438,8 @@ int* multiSlsDetector::getDataFromDetector() {
#ifdef VERBOSE
cout << "Detector " << id << " does not have data left " << endl;
#endif
if((detectors[id]->getDetectorsType() != EIGER)||(detectors[id]->getDetectorsType() != JUNGFRAU))
break;
/*if((detectors[id]->getDetectorsType() != EIGER)||(detectors[id]->getDetectorsType() != JUNGFRAU))
break;*/
}
p+=n/sizeof(int);
}
@ -1447,9 +1447,10 @@ int* multiSlsDetector::getDataFromDetector() {
//eiger returns only null
detectorType types = getDetectorsType();
//if(types == EIGER )
if(types == EIGER || types == JUNGFRAU)
if(types == EIGER || types == JUNGFRAU){
delete [] retval;
return NULL;
}
if (nodatadet>=0) {
for (int id=0; id<thisMultiDetector->numberOfDetectors; id++) {