summaryrefslogtreecommitdiff
path: root/storage/innobase/include/ut0mem.ic
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/ut0mem.ic')
-rw-r--r--storage/innobase/include/ut0mem.ic8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/innobase/include/ut0mem.ic b/storage/innobase/include/ut0mem.ic
index c06e2b3ae81..5c9071d52cc 100644
--- a/storage/innobase/include/ut0mem.ic
+++ b/storage/innobase/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., 59 Temple
-Place, Suite 330, Boston, MA 02111-1307 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;
}