diff options
Diffstat (limited to 'storage/xtradb/include/ut0mem.ic')
-rw-r--r-- | storage/xtradb/include/ut0mem.ic | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/xtradb/include/ut0mem.ic b/storage/xtradb/include/ut0mem.ic index de701bd50e3..5c9071d52cc 100644 --- a/storage/xtradb/include/ut0mem.ic +++ b/storage/xtradb/include/ut0mem.ic @@ -11,8 +11,8 @@ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with -this program; if not, write to the Free Software Foundation, Inc., -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA *****************************************************************************/ @@ -280,7 +280,7 @@ ut_str_sql_format( switch (ch) { case '\0': - if (UNIV_UNLIKELY(buf_size - buf_i < 4)) { + if (buf_size - buf_i < 4) { goto func_exit; } @@ -292,7 +292,7 @@ ut_str_sql_format( case '\'': case '\\': - if (UNIV_UNLIKELY(buf_size - buf_i < 4)) { + if (buf_size - buf_i < 4) { goto func_exit; } |