Reference app installation failures are fixed
authorDongeup Ham <dongeup.ham@samsung.com>
Sat, 22 Dec 2012 08:33:04 +0000 (17:33 +0900)
committerDongeup Ham <dongeup.ham@samsung.com>
Sat, 22 Dec 2012 08:33:04 +0000 (17:33 +0900)
Change-Id: I0fe2837afdc254903a07f8cce28d0e392b9d255f
Signed-off-by: Dongeup Ham <dongeup.ham@samsung.com>
inc/InstallerDefs.h
src/XmlHandler/XmlWriter.cpp [changed mode: 0644->0755]

index ee444fc..8cbcda6 100755 (executable)
@@ -21,7 +21,7 @@
 #ifndef _INSTALLER_DEFS_H_
 #define _INSTALLER_DEFS_H_
 
-#define OSP_INSTALLER_VERSION "osp-installer version = [2012/12/21]_RC[1]"
+#define OSP_INSTALLER_VERSION "osp-installer version = [2012/12/22]_RC[1]"
 
 #define DIR_BIN                                L"/bin"
 #define DIR_INFO                       L"/info"
old mode 100644 (file)
new mode 100755 (executable)
index 2d6459f..59866a1
@@ -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;