File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -138,14 +138,16 @@ check_user_token_mysql(const char *mysql_server,
138
138
int int_data ;
139
139
int row_count ;
140
140
141
- if (mysql_library_init (0 , NULL , NULL )){
141
+ if (mysql_library_init (0 , NULL , NULL ))
142
+ {
142
143
if (verbose )
143
144
D (debug_file , "could not initialize MySQL client library" );
144
145
return retval ;
145
146
}
146
147
147
148
con = mysql_init (con );
148
- if (!con ) {
149
+ if (!con )
150
+ {
149
151
if (verbose )
150
152
D (debug_file , "out of memorys" );
151
153
return retval ;
@@ -178,7 +180,9 @@ check_user_token_mysql(const char *mysql_server,
178
180
D (debug_file , "mysql_stmt_prepare() failed %s" , mysql_stmt_error (stmt ));
179
181
goto end_connection ;
180
182
}
181
- }else {
183
+ }
184
+ else
185
+ {
182
186
if (mysql_stmt_prepare (stmt , sql2 , strlen (sql2 )))
183
187
{
184
188
if (verbose )
You can’t perform that action at this time.
0 commit comments