1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug#12406055 post-push fix: unused variable 'num_chars' in optimized build.

Also fixed possibly uninitialized use of need_copy_table_res.
This commit is contained in:
Tor Didriksen
2011-11-01 07:50:54 +01:00
parent 59a38155bb
commit d5b8ce6a2d
2 changed files with 3 additions and 2 deletions

View File

@ -188,7 +188,8 @@ end:
#else
#ifdef HAVE_SNPRINTF
buff[sizeof(buff)-1]=0; // Safety
int num_chars= snprintf(buff, sizeof(buff)-1, "%.*f",(int) decimals, num);
IF_DBUG(int num_chars= )
snprintf(buff, sizeof(buff)-1, "%.*f",(int) decimals, num);
DBUG_ASSERT(num_chars > 0);
DBUG_ASSERT(num_chars < (int) sizeof(buff));
#else