Skip to content

Commit

Permalink
revert bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bendailey committed Dec 3, 2015
1 parent 52465df commit 87e4349
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib4d_sql/fourd.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,12 +389,12 @@ FOURD_STATEMENT * fourd_prepare_statement(FOURD *cnx,const char *query)
if(cnx==NULL || !cnx->connected || query==NULL)
return NULL;

if(_prepare_statement(cnx, 3, query)!=0)
/*if(_prepare_statement(cnx, 3, query)!=0)
return NULL;

*/
state=calloc(1,sizeof(FOURD_STATEMENT));
state->cnx=cnx;
state->query=(char *)malloc(strlen(query)+1);
/*state->query=(char *)malloc(strlen(query)+1);*/

/* allocate arbitrarily five elements in this table */
state->nbAllocElement=5;
Expand Down

0 comments on commit 87e4349

Please sign in to comment.