Skip to content

Commit b031130

Browse files
committed
Fixed result.outBinds corruption after PL/SQL execution.
1 parent 3f73231 commit b031130

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## node-oracledb v1.3.0 (DD Mon YYYY)
4+
- Fixed result.outBinds corruption after PL/SQL execution.
45

56
- Added a `oracledb.oracleClientVersion` property giving the version of the Oracle
67
client library, and a `connection.oracleServerVersion` property giving the Oracle

src/njs/src/njsConnection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2433,7 +2433,7 @@ v8::Handle<v8::Value> Connection::GetOutBinds (eBaton* executeBaton)
24332433
return NanEscapeScope(GetOutBindObject( executeBaton ));
24342434
}
24352435
}
2436-
return NanUndefined();
2436+
return NanEscapeScope(NanUndefined());
24372437
}
24382438

24392439
/*****************************************************************************/

0 commit comments

Comments
 (0)