0ced1ba962
OBS-URL: https://build.opensuse.org/package/show/server:database/unixODBC?expand=0&rev=23
23 lines
768 B
Diff
23 lines
768 B
Diff
Index: Drivers/nn/yyparse.y
|
|
===================================================================
|
|
--- Drivers/nn/yyparse.y.orig
|
|
+++ Drivers/nn/yyparse.y
|
|
@@ -36,7 +36,7 @@ static char sccsid[]
|
|
# define yylex() nnsql_yylex(&yylval, pyyenv)
|
|
#endif
|
|
|
|
-#define yyparse(x) nnsql_yyparse (pyyenv)
|
|
+#define yyparse(x) nnsql_yyparse (yyenv_t* pyyenv)
|
|
#define yyerror(msg) nnsql_yyerror (pyyenv, msg)
|
|
#define SETYYERROR(env, code) { env->pstmt->errcode = code; \
|
|
env->pstmt->errpos = env->errpos;}
|
|
@@ -1197,7 +1197,7 @@ static int add_ins_value( yystmt_t* pstm
|
|
{
|
|
if( !idx )
|
|
{
|
|
- MEM_FREE(pstmt->ins_values)
|
|
+ MEM_FREE(pstmt->ins_values);
|
|
pstmt->ins_values = (node_t*)MEM_ALLOC( FILTER_CHUNK_SIZE * sizeof(node_t));
|
|
}
|
|
else if( ! idx%FILTER_CHUNK_SIZE )
|