Skip to content

Commit 48d7463

Browse files
committed
Merge remote-tracking branch 'origin/candidate-9.2.x' into candidate-9.4.x
Signed-off-by: Gordon Smith <[email protected]> # Conflicts: # commons-hpcc/pom.xml # dfsclient/pom.xml # pom.xml # wsclient/pom.xml
2 parents 536f4e1 + 76ab9f4 commit 48d7463

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
@@ -832,9 +832,6 @@ private int startFetch()
832832
{
833833
try
834834
{
835-
// Read handle before closing
836-
this.dis.readInt();
837-
838835
close();
839836
}
840837
catch (IOException e)
@@ -896,7 +893,8 @@ else if (this.handle == 0)
896893
{
897894
if (dataLen == 0)
898895
{
899-
dataLen = dis.readInt(); // need to read addl int here ...
896+
// Read handle before closing
897+
dis.readInt();
900898
close();
901899
return 0;
902900
}

0 commit comments

Comments
 (0)