]> granicus.if.org Git - postgresql/commitdiff
Fixed copy&paste mistake that made library use uninitialized variable.
authorMichael Meskes <meskes@postgresql.org>
Tue, 3 Feb 2009 08:48:29 +0000 (08:48 +0000)
committerMichael Meskes <meskes@postgresql.org>
Tue, 3 Feb 2009 08:48:29 +0000 (08:48 +0000)
src/interfaces/ecpg/ecpglib/execute.c

index 54636c4bc95099a62c55a07d960d6ea606b607b1..a0137614941241707eb0be00ba70b1322f771ed7 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.80 2009/02/02 16:14:06 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.81 2009/02/03 08:48:29 meskes Exp $ */
 
 /*
  * The aim is to get a simpler inteface to the database routines.
@@ -391,7 +391,11 @@ ecpg_store_result(const PGresult *results, int act_field,
                        }
                }
                else
-                       len = PQgetlength(results, act_tuple, act_field);
+               {
+                       for (act_tuple = 0; act_tuple < ntuples; act_tuple++)
+                               len += strlen(PQgetvalue(results, act_tuple, act_field)) + 1;
+               }
+
                ecpg_log("ecpg_store_result on line %d: allocating memory for %d tuples\n", stmt->lineno, ntuples);
                var->value = (char *) ecpg_alloc(len, stmt->lineno);
                if (!var->value)