Skip to content

Commit d336460

Browse files
author
Jean-Baptiste Queru
committed
Merge into jb-mr1-dev
Change-Id: Idf183be6a41ff37add5141a20e96d5190396d1a4
2 parents 9529386 + 5bcb551 commit d336460

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ private static class SqlArguments {
252252
if (!DatabaseHelper.isValidTable(this.table)) {
253253
throw new IllegalArgumentException("Bad root path: " + this.table);
254254
}
255-
if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table)) {
255+
if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table) ||
256+
TABLE_GLOBAL.equals(this.table)) {
256257
this.where = Settings.NameValueTable.NAME + "=?";
257258
this.args = new String[] { url.getPathSegments().get(1) };
258259
} else {

0 commit comments

Comments
 (0)