Bug 1217339 - Fix illegal format of folder-listing object, r=btian

This commit is contained in:
Shawn Huang 2015-10-23 22:21:09 +08:00
parent 4468b8e23f
commit 56d9fd1d50

View File

@ -76,7 +76,7 @@ BluetoothMapFolder::GetFolderListingObjectString(nsAString& aString,
const nsAString& key = iter.Key(); const nsAString& key = iter.Key();
folderListingObejct.Append("<folder name=\""); folderListingObejct.Append("<folder name=\"");
folderListingObejct.Append(NS_ConvertUTF16toUTF8(key).get()); folderListingObejct.Append(NS_ConvertUTF16toUTF8(key).get());
folderListingObejct.Append("\">"); folderListingObejct.Append("\"/>");
count++; count++;
} }