Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Patch Available
Description
There is a typo in src/main/c/CMS_BytesMessage.cpp from the activemq-c project.
Replace
if( readCount != -1 ) {
with
if( readCount == -1 ) {
As it is now, the function always returns error 14.