summaryrefslogtreecommitdiff
path: root/src/XmlHandler
diff options
context:
space:
mode:
authorDongeup Ham <dongeup.ham@samsung.com>2012-12-22 17:33:04 +0900
committerDongeup Ham <dongeup.ham@samsung.com>2012-12-22 17:33:04 +0900
commitbe4603695fe468f9cdd59074c49d70119d76f7c3 (patch)
tree4142f82b19125adecc55714aecc3734c99d6b2fc /src/XmlHandler
parente26e2c8c9c8ea73a710ad8e8c4e4ece1512c55cb (diff)
downloadinstaller-be4603695fe468f9cdd59074c49d70119d76f7c3.tar.gz
installer-be4603695fe468f9cdd59074c49d70119d76f7c3.tar.bz2
installer-be4603695fe468f9cdd59074c49d70119d76f7c3.zip
Reference app installation failures are fixed
Change-Id: I0fe2837afdc254903a07f8cce28d0e392b9d255f Signed-off-by: Dongeup Ham <dongeup.ham@samsung.com>
Diffstat (limited to 'src/XmlHandler')
-rwxr-xr-x[-rw-r--r--]src/XmlHandler/XmlWriter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/XmlHandler/XmlWriter.cpp b/src/XmlHandler/XmlWriter.cpp
index 2d6459f..59866a1 100644..100755
--- a/src/XmlHandler/XmlWriter.cpp
+++ b/src/XmlHandler/XmlWriter.cpp
@@ -67,7 +67,7 @@ XmlWriter::~XmlWriter(void)
AppLogTag(OSP_INSTALLER, "%ls is generated", __xmlFilePath.GetPointer());
AppLogTag(OSP_INSTALLER, "------------------------------------------");
// AppLogTag(OSP_INSTALLER, "%s", __pXmlBuffer->content);
- InstallerUtil::DumpLog((const char*)__pXmlBuffer->content);
+ // InstallerUtil::DumpLog((const char*)__pXmlBuffer->content);
}
if (__pXmlWriter)
@@ -87,7 +87,8 @@ XmlWriter::Construct(const Tizen::Base::String& filepath)
bool res = false;
int err = 0;
- __pXmlBuffer = xmlBufferCreate();
+ // __pXmlBuffer = xmlBufferCreate();
+ __pXmlBuffer = xmlBufferCreateSize(4096*10);
TryCatch(__pXmlBuffer, res = false, "[osp-installer] __pXmlBuffer is null");
__xmlFilePath = filepath;