LaurenceLiZhixin opened a new issue #310: URL: https://github.com/apache/dubbo-go-hessian2/issues/310
这一行负责解析为int32 https://github.com/apache/dubbo-go-hessian2/blob/c18594c8ecd05dbd953d68ab1fab03d4a1d6c6e5/decode.go#L273 位置位于解析byte之前: https://github.com/apache/dubbo-go-hessian2/blob/c18594c8ecd05dbd953d68ab1fab03d4a1d6c6e5/decode.go#L295 而'B' byte 标会优先进入int32的处理分支,被解析为int32,因为'B' == 0x91 ,符合int32的第一个条件。 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
