Kaydet (Commit) 476e7aca authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1326473 Resource leak on an exceptional path

Change-Id: I22edbc104164cfd598cfa52e89a112415e63b2c7
üst 3ad3365c
......@@ -503,7 +503,10 @@ public class XMergeBridge {
}
finally{
if (newxos != null){
newxos.flush();
try {
newxos.flush();
} catch (IOException e) {
}
newxos.close();
}
xis.close();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment