aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/oracle-types.cxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-16 11:45:22 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-16 12:48:18 +0200
commitce623b4595beef09f51fdef7c6f28cc4c0efca45 (patch)
treebeb503962c5511164b46623d8ea26a54f7978108 /odb/oracle/oracle-types.cxx
parent65b89ab22d0d2fe3cff2f3c071b3628b786afeb5 (diff)
Allocate position context in lob struct instead of in LOB image
Diffstat (limited to 'odb/oracle/oracle-types.cxx')
-rw-r--r--odb/oracle/oracle-types.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/oracle/oracle-types.cxx b/odb/oracle/oracle-types.cxx
index 9f2ca3e..7036c9a 100644
--- a/odb/oracle/oracle-types.cxx
+++ b/odb/oracle/oracle-types.cxx
@@ -29,7 +29,7 @@ namespace odb
lob (lob& x)
: locator (x.locator),
buffer (x.buffer),
- position_context (x.position_context)
+ position (x.position)
{
x.locator = 0;
}
@@ -44,7 +44,7 @@ namespace odb
locator = x.locator;
buffer = x.buffer;
- position_context = x.position_context;
+ position = x.position;
x.locator = 0;
}