1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

fixed typo in last push

This commit is contained in:
unknown
2003-08-17 14:37:26 +03:00
parent ff012aedab
commit 79e3476071

View File

@@ -1413,12 +1413,12 @@ int mysqld_show(THD *thd, const char *wild, show_var_st *variables,
goto err; /* purecov: inspected */
}
}
pthread_mutex_unlock(&mutex);
pthread_mutex_unlock(mutex);
send_eof(&thd->net);
DBUG_RETURN(0);
err:
pthread_mutex_unlock(&mutex);
pthread_mutex_unlock(mutex);
DBUG_RETURN(1);
}