]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix error introduced when refactoring some of the code.
authorMarco van Wieringen <mvw@planets.elm.net>
Tue, 6 Apr 2010 20:29:50 +0000 (22:29 +0200)
committerMarco van Wieringen <mvw@planets.elm.net>
Fri, 9 Apr 2010 11:40:09 +0000 (13:40 +0200)
bacula/src/cats/myingres.c
bacula/src/cats/myingres.sc

index 42a7fbfd2618219a42f442341a1d9634cff3df62..a52e9356d1b48e43e8993980f371a7af5a5d1a13 100644 (file)
@@ -60,8 +60,8 @@ short INGgetCols(INGconn *dbconn, const char *query, bool transaction)
   
    short number = -1;
    IISQLDA *sqlda;
-   sqlda = (IISQLDA *)malloc(IISQDA_HEAD_SIZE + (number * IISQDA_VAR_SIZE));
-   memset(sqlda, 0, (IISQDA_HEAD_SIZE + (number * IISQDA_VAR_SIZE)));
+   sqlda = (IISQLDA *)malloc(IISQDA_HEAD_SIZE + IISQDA_VAR_SIZE);
+   memset(sqlda, 0, (IISQDA_HEAD_SIZE + IISQDA_VAR_SIZE));
    sqlda->sqln = number;
    stmt = bstrdup(query);
    /*
index adebe2e6f0017be69ada2378bc57046f576a1c35..ad19f9135952e6c0d074cddb25b2277de5f10a6c 100644 (file)
@@ -57,8 +57,8 @@ short INGgetCols(INGconn *dbconn, const char *query, bool transaction)
    short number = -1;
    IISQLDA *sqlda;
 
-   sqlda = (IISQLDA *)malloc(IISQDA_HEAD_SIZE + (number * IISQDA_VAR_SIZE));
-   memset(sqlda, 0, (IISQDA_HEAD_SIZE + (number * IISQDA_VAR_SIZE)));
+   sqlda = (IISQLDA *)malloc(IISQDA_HEAD_SIZE + IISQDA_VAR_SIZE);
+   memset(sqlda, 0, (IISQDA_HEAD_SIZE + IISQDA_VAR_SIZE));
    
    sqlda->sqln = number;