From f0dfb82fcb1df0379c296bd0bb72f029130331ba Mon Sep 17 00:00:00 2001
From: Kristofer Pettersson <kpettersson@mysql.com>
Date: Tue, 29 Jul 2008 15:37:09 +0200
Subject: [PATCH] Bug#37781 mysql_drop_user calls get_current_user() twice for
 no reason

Fixed typo and removed duplicate call to get_current_user.
---
 sql/sql_acl.cc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc
index e12fbb9843a..df5e844749f 100644
--- a/sql/sql_acl.cc
+++ b/sql/sql_acl.cc
@@ -5430,7 +5430,6 @@ bool mysql_drop_user(THD *thd, List <LEX_USER> &list)
 
   while ((tmp_user_name= user_list++))
   {
-    user_name= get_current_user(thd, tmp_user_name);
     if (!(user_name= get_current_user(thd, tmp_user_name)))
     {
       result= TRUE;
-- 
2.30.9