Explorar o código

fixed null check

AndyScherzinger %!s(int64=8) %!d(string=hai) anos
pai
achega
a634be95ca
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/com/owncloud/android/files/FileOperationsHelper.java

+ 1 - 1
src/com/owncloud/android/files/FileOperationsHelper.java

@@ -110,7 +110,7 @@ public class FileOperationsHelper {
                 }
             }
 
-            if (br != null) {
+            if (fr != null) {
                 try {
                     fr.close();
                 } catch (IOException e) {