- Fixed bugs in sinqhttp.c, most notatbly the unknown error on hm init
- Added first slit to amorset - Added untested code for the POLDI strees machine
This commit is contained in:
@ -593,7 +593,11 @@
|
||||
{
|
||||
|
||||
snprintf(hmCommand,255,"sum:2:0:%d",iDim[2]);
|
||||
data = self->pHM->pDriv->SubSample(self->pHM->pDriv,pCon,0,hmCommand);
|
||||
if(self->pHM->pDriv->SubSample != NULL){
|
||||
data = self->pHM->pDriv->SubSample(self->pHM->pDriv,pCon,0,hmCommand);
|
||||
} else {
|
||||
data = NULL;
|
||||
}
|
||||
if(data == NULL)
|
||||
{
|
||||
SCWrite(pCon,"ERROR: failed to retrieve collapsed data from HM", eError);
|
||||
|
Reference in New Issue
Block a user