Issue #2854: Fix merge of textdb

Change-Id: I626eabc72fbedde983e592ec0c8fb50ed1f52ae3

Former-commit-id: 1dc654c20e [formerly 2335691bb79c14d96e286f9b0be0f5085711c7bc]
Former-commit-id: dd35516290
This commit is contained in:
Richard Peter 2014-05-12 17:30:57 -05:00
parent 0ed865a59c
commit 93520a29d3

View file

@ -119,7 +119,7 @@ public class TextDBSrvWrapper {
int tries = 0;
byte[] bytesOut = null;
while (tries < 2) {
while ((bytesOut == null) && (tries < 2)) {
try {
ByteArrayOutputStream baos = ByteArrayOutputStreamPool
.getInstance().getStream();