Skip to content

Commit

Permalink
Make sure that Validate() in MessageDispatcher returns whether the da…
Browse files Browse the repository at this point in the history
…taBuffer is open or not
  • Loading branch information
VeithMetro authored Dec 17, 2024
1 parent bc58299 commit 681c7a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/messaging/MessageDispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ namespace Messaging {
return (_dataBuffer.IsValid());
}

void Validate() {
_dataBuffer.Open();
bool Validate() {
return (_dataBuffer.Open());
}

const string& MetadataName() const {
Expand Down

0 comments on commit 681c7a3

Please sign in to comment.