Skip to content

Commit c4695d3

Browse files
committed
Merge remote-tracking branch 'origin/candidate-9.6.x' into candidate-9.8.x
Signed-off-by: Gordon Smith <[email protected]> # Conflicts: # commons-hpcc/pom.xml # dfsclient/pom.xml # pom.xml # wsclient/pom.xml
2 parents 02d5145 + 5c73a08 commit c4695d3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dfsclient/src/main/java/org/hpccsystems/dfs/client/RowServiceInputStream.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -922,9 +922,6 @@ private int startFetch()
922922
{
923923
try
924924
{
925-
// Read handle before closing
926-
this.dis.readInt();
927-
928925
close();
929926
}
930927
catch (IOException e)
@@ -986,7 +983,8 @@ else if (this.handle == 0)
986983
{
987984
if (dataLen == 0)
988985
{
989-
dataLen = dis.readInt(); // need to read addl int here ...
986+
// Read handle before closing
987+
dis.readInt();
990988
close();
991989
return 0;
992990
}

0 commit comments

Comments
 (0)