Changeset 760 for XIOS


Ignore:
Timestamp:
10/26/15 17:05:06 (8 years ago)
Author:
rlacroix
Message:

Fix: The domain indexes were sometimes not sent when they should have been.

If no lon/lat nor bounds were set but the domain was compressible and outputed as such, XIOS would crash.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.cpp

    r754 r760  
    10411041     { 
    10421042       this->checkMask(); 
    1043        if (hasLonLat || hasArea) this->computeConnectedServer(); 
     1043       if (hasLonLat || hasArea || isCompressible_) this->computeConnectedServer(); 
    10441044       if (hasLonLat) this->completeLonLatClient(); 
    10451045     } 
     
    10861086     { 
    10871087       sendServerAttribut(); 
    1088        if (hasLonLat || hasArea) sendLonLatArea(); 
     1088       if (hasLonLat || hasArea || isCompressible_) sendLonLatArea(); 
    10891089     } 
    10901090     this->isChecked = true; 
Note: See TracChangeset for help on using the changeset viewer.