Commit 6436f923 authored by unknown's avatar unknown

Fixed typo


sql/sql_db.cc:
  Move LINT_INIT() to correct place
parent 3093b5fe
...@@ -1105,12 +1105,12 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check) ...@@ -1105,12 +1105,12 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
#ifndef NO_EMBEDDED_ACCESS_CHECKS #ifndef NO_EMBEDDED_ACCESS_CHECKS
ulong db_access; ulong db_access;
Security_context *sctx= thd->security_ctx; Security_context *sctx= thd->security_ctx;
LINT_INIT(db_access);
#endif #endif
DBUG_ENTER("mysql_change_db"); DBUG_ENTER("mysql_change_db");
DBUG_PRINT("enter",("name: '%s'",name)); DBUG_PRINT("enter",("name: '%s'",name));
LINT_INIT(db_length); LINT_INIT(db_length);
LINT_INIT(db_access);
/* dbname can only be NULL if malloc failed */ /* dbname can only be NULL if malloc failed */
if (!dbname || !(db_length= strlen(dbname))) if (!dbname || !(db_length= strlen(dbname)))
......
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