Github user ganeshmurthy commented on the issue:
https://github.com/apache/qpid-dispatch/pull/108
I was able to successfully merge your code to my local master but ran into
a compile issue.
In file included from
/home/gmurthy/opensource/dispatch/include/qpid/dispatch/ctools.h:27:0,
from
/home/gmurthy/opensource/dispatch/include/qpid/dispatch/container.h:35,
from
/home/gmurthy/opensource/dispatch/src/dispatch_private.h:40,
from
/home/gmurthy/opensource/dispatch/src/router_core/router_core_private.h:22,
from
/home/gmurthy/opensource/dispatch/src/router_core/route_tables.c:20:
/home/gmurthy/opensource/dispatch/src/router_core/route_tables.c: In
function âqdr_del_router_CTâ:
/home/gmurthy/opensource/dispatch/src/router_core/route_tables.c:353:17:
error: âqdr_node_t {aka struct qdr_node_t}â has no member named
âmaskbitâ; did you mean âmask_bitâ?
assert(rnode->maskbit == router_maskbit);
Fix is easy enough (missing an underscore in maskbit)
assert(rnode->mask_bit == router_maskbit);
After the fix, the code compiled and I was able to run all unit tests
successfully. I did not see any segfaults.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]