Commit 81eb82b4 authored by Sergey Petrunya's avatar Sergey Petrunya

Fix a compiler warning on sparc32

parent 80cbf3a1
...@@ -252,7 +252,14 @@ int handler::multi_range_read_next(char **range_info) ...@@ -252,7 +252,14 @@ int handler::multi_range_read_next(char **range_info)
else else
{ {
if (was_semi_consistent_read()) if (was_semi_consistent_read())
{
/*
The following assignment is redundant, but for extra safety and to
remove the compiler warning:
*/
range_res= FALSE;
goto scan_it_again; goto scan_it_again;
}
/* /*
We need to set this for the last range only, but checking this We need to set this for the last range only, but checking this
condition is more expensive than just setting the result code. condition is more expensive than just setting the result code.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment