Skip to content
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
Diff view
Diff view
2 changes: 1 addition & 1 deletion sql/server_component/log_source_backtrace.cc
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ static log_service_error log_error_read_backtrace_loop(const char *log_file,
size = max_backtrace; // Correct size to the part we'll actually read.

// Seek to the approximate position of the row to start reading at.
if (my_fseek(fh, (long)pos, SEEK_SET)) { /* purecov: begin inspected */
if (my_fseek(fh, (long)pos, SEEK_SET) == MY_FILEPOS_ERROR) { /* purecov: begin inspected */
ret = LOG_SERVICE_SEEK_FAILED;
goto fail_with_free; /* purecov: end */
}
Expand Down