https://issues.apache.org/bugzilla/show_bug.cgi?id=54468
--- Comment #7 from William A. Rowe Jr. <wr...@apache.org> --- I think you are confused? ctx->context_id is not a pointer but a byte array. See the declaration; unsigned char context_id[SHA_DIGEST_LENGTH]; context_idis a member of the struct, *context_id is not a member of the struct. sizeof(ctx->context_id) is in fact 20. sizeof(&ctx->context_id) would in fact be 8 as you observe. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org