default/epicsMessageQueue: initialize threadNode

This commit is contained in:
Michael Davidsaver
2023-06-13 15:57:33 -07:00
parent fe4a32e425
commit a7a56912eb

View File

@@ -41,6 +41,15 @@ struct threadNode {
void *buf;
unsigned int size;
bool eventSent;
inline
threadNode()
:evp(NULL)
,buf(NULL)
,size(0u)
,eventSent(false)
{
memset(&link, 0, sizeof(link));
}
};
/*