10000 Fix incorrect byte size in mlog read_1_bytes comment by lee-jeong-geun · Pull Request #608 · mysql/mysql-server · GitHub
[go: up one dir, main page]

Skip to content

Fix incorrect byte size in mlog read_1_bytes comment #608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
C245
Diff view
Diff view
2 changes: 1 addition & 1 deletion storage/innobase/mtr/mtr0log.cc
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ static const byte *read_2_bytes(const byte *ptr, const byte *end_ptr,
/** Read 1 bytes from log buffer.
@param[in] ptr pointer to buffer
@param[in] end_ptr pointer to end of buffer
@param[out] val read 2 bytes value */
@param[out] val read 1 bytes value */
static const byte *read_1_bytes(const byte *ptr, const byte *end_ptr,
uint8_t &val) {
if (end_ptr < ptr + 1) {
Expand Down
0