Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 17986e6b authored by Doug Zongker's avatar Doug Zongker Committed by Android Git Automerger
Browse files

am 8cd9e4f3: fix bug in applying patches

Merge commit '8cd9e4f3' into gingerbread

* commit '8cd9e4f3':
  fix bug in applying patches
parents 23ceeea8 8cd9e4f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -588,7 +588,7 @@ int applypatch(const char* source_filename,

        int to_use = FindMatchingPatch(copy_file.sha1,
                                       patch_sha1_str, num_patches);
        if (to_use > 0) {
        if (to_use >= 0) {
            copy_patch_value = patch_data[to_use];
        }