diff options
| author | 2013-07-30 19:19:47 +0000 | |
|---|---|---|
| committer | 2013-07-30 19:19:47 +0000 | |
| commit | cfc23ac688be9de1ecd2e659455ea1ebcceb63dc (patch) | |
| tree | 00b927cc4734d2190a229c31d7967038851e5f08 /tools/aapt/AaptAssets.cpp | |
| parent | 8cf1f4465bada6b25b47b7d72dc15d216c89de80 (diff) | |
| parent | 1d766b53217f9e45472a01e84d2f1b02af36dec7 (diff) | |
Merge "Add support for MNC=00"
Diffstat (limited to 'tools/aapt/AaptAssets.cpp')
| -rw-r--r-- | tools/aapt/AaptAssets.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/aapt/AaptAssets.cpp b/tools/aapt/AaptAssets.cpp index 2149190b10be..3797b49cc32d 100644 --- a/tools/aapt/AaptAssets.cpp +++ b/tools/aapt/AaptAssets.cpp @@ -934,6 +934,9 @@ bool AaptGroupEntry::getMncName(const char* name, if (out) { out->mnc = atoi(val); + if (out->mnc == 0) { + out->mnc = ACONFIGURATION_MNC_ZERO; + } } return true; |