Skip to content

Commit

Permalink
handle case in ATL08 where no records are received from the ATL03 reader
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Mar 7, 2024
1 parent e9ec583 commit 25640d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/icesat2/plugin/Atl08Dispatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ void Atl08Dispatch::postResult (const vegetation_t* result, RecordObject* ancrec
int bufsize = atl08Record->serialize(&buffer, RecordObject::REFERENCE);
while(outQ->postCopy(buffer, bufsize, SYS_TIMEOUT) == MsgQ::STATE_TIMEOUT);
}
else
else if(recVec.size() > 1)
{
/* Post Serialized Container Record */
ContainerRecord container(recVec);
Expand Down

0 comments on commit 25640d1

Please sign in to comment.