]> git.saurik.com Git - android/aapt.git/commitdiff
Merge "aapt: Remove terminal pointer incrementaion"
authorJean-Baptiste Queru <jbq@google.com>
Sat, 2 Jun 2012 16:21:36 +0000 (09:21 -0700)
committerandroid code review <noreply-gerritcodereview@google.com>
Sat, 2 Jun 2012 16:21:37 +0000 (09:21 -0700)
1  2 
ResourceTable.cpp

diff --combined ResourceTable.cpp
index 770b02797cecd0b9aca1f9a4ff362ee48dc8d2d1,a417311a17baaa2eb73472050aeadfa94d3a1c1f..d051c292663d21719645ac5cdd2db702cce978a9
@@@ -2253,7 -2253,6 +2253,6 @@@ bool ResourceTable::getAttributeFlags
          bool failed = false;
          while (pos < end && !failed) {
              const char16_t* start = pos;
-             end++;
              while (pos < end && *pos != '|') {
                  pos++;
              }
@@@ -2661,12 -2660,6 +2660,12 @@@ status_t ResourceTable::flatten(Bundle
              const bool filterable = (typeName != mipmap16);
  
              const size_t N = t != NULL ? t->getOrderedConfigs().size() : 0;
 +
 +            // Until a non-NO_ENTRY value has been written for a resource,
 +            // that resource is invalid; validResources[i] represents
 +            // the item at t->getOrderedConfigs().itemAt(i).
 +            Vector<bool> validResources;
 +            validResources.insertAt(false, 0, N);
              
              // First write the typeSpec chunk, containing information about
              // each resource entry in this type.
                          if (amt < 0) {
                              return amt;
                          }
 +                        validResources.editItemAt(ei) = true;
                      } else {
                          index[ei] = htodl(ResTable_type::NO_ENTRY);
                      }
                      (((uint8_t*)data->editData()) + typeStart);
                  tHeader->header.size = htodl(data->getSize()-typeStart);
              }
 +
 +            for (size_t i = 0; i < N; ++i) {
 +                if (!validResources[i]) {
 +                    sp<ConfigList> c = t->getOrderedConfigs().itemAt(i);
 +                    fprintf(stderr, "warning: no entries written for %s/%s\n",
 +                            String8(typeName).string(), String8(c->getName()).string());
 +                }
 +            }
          }
  
          // Fill in the rest of the package information.
@@@ -3624,7 -3608,9 +3623,7 @@@ sp<ResourceTable::Package> ResourceTabl
  {
      sp<Package> p = mPackages.valueFor(package);
      if (p == NULL) {
 -        if (mBundle->getIsOverlayPackage()) {
 -            p = new Package(package, 0x00);
 -        } else if (mIsAppPackage) {
 +        if (mIsAppPackage) {
              if (mHaveAppPackage) {
                  fprintf(stderr, "Adding multiple application package resources; only one is allowed.\n"
                                  "Use -x to create extended resources.\n");