projects
/
users
/
andresfreund
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62f010e
)
Don't incorrectly free iterators after all
author
Peter Geoghegan
<
[email protected]
>
Wed, 12 Mar 2014 04:19:09 +0000
(21:19 -0700)
committer
Peter Geoghegan
<
[email protected]
>
Wed, 12 Mar 2014 04:19:09 +0000
(21:19 -0700)
src/backend/utils/adt/jsonb_support.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/jsonb_support.c
b/src/backend/utils/adt/jsonb_support.c
index ee86e55e584e02936d91b65c2b3610201b406514..4175594d76cc208d1f2b078245f46c7ea5d073c1 100644
(file)
--- a/
src/backend/utils/adt/jsonb_support.c
+++ b/
src/backend/utils/adt/jsonb_support.c
@@
-275,9
+275,6
@@
compareJsonbBinaryValue(char *a, char *b)
}
}
- pfree(it1);
- pfree(it2);
-
return res;
}