소스 검색

fixed null check

AndyScherzinger 8 년 전
부모
커밋
a634be95ca
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {