Skip to content

Commit

Permalink
Unmix decls
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed May 13, 2015
1 parent 3e02e2e commit 95e31ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ header_array_to_slist(ArrayType *array, struct curl_slist *headers)
while( array_iterate(iterator, &value, &isnull) )
{
HeapTupleHeader rec;
HeapTupleData tuple;
Oid tup_type;
int32 tup_typmod, ncolumns;
TupleDesc tup_desc;
Expand All @@ -260,7 +261,6 @@ header_array_to_slist(ArrayType *array, struct curl_slist *headers)
nulls = (bool *) palloc0(ncolumns * sizeof(bool));

/* Build a temporary HeapTuple control structure */
HeapTupleData tuple;
tuple.t_len = tup_len;
ItemPointerSetInvalid(&(tuple.t_self));
tuple.t_tableOid = InvalidOid;
Expand Down

0 comments on commit 95e31ba

Please sign in to comment.