diff options
author | Dongeup Ham <dongeup.ham@samsung.com> | 2013-01-11 14:37:36 +0900 |
---|---|---|
committer | Dongeup Ham <dongeup.ham@samsung.com> | 2013-01-11 14:37:36 +0900 |
commit | f7a3ee87ed69267ae78104329752951654d1d20e (patch) | |
tree | e0496b54c0f85c01c63bc109d8a7deafacd0d1c1 /src/Context/InstallationContext.cpp | |
parent | 6e832d2b3033ebc5e10cd42ae15c1377403d7f07 (diff) | |
download | installer-f7a3ee87ed69267ae78104329752951654d1d20e.tar.gz installer-f7a3ee87ed69267ae78104329752951654d1d20e.tar.bz2 installer-f7a3ee87ed69267ae78104329752951654d1d20e.zip |
installation error message summarized
Change-Id: I0196b74eefae172f2d1222d4aeff9b55ba82d5e6
Signed-off-by: Dongeup Ham <dongeup.ham@samsung.com>
Diffstat (limited to 'src/Context/InstallationContext.cpp')
-rwxr-xr-x | src/Context/InstallationContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Context/InstallationContext.cpp b/src/Context/InstallationContext.cpp index bfa88b2..fa4a891 100755 --- a/src/Context/InstallationContext.cpp +++ b/src/Context/InstallationContext.cpp @@ -106,10 +106,10 @@ InstallerError InstallationContext::Construct(void) { __pPackageInfoImpl = new (std::nothrow) _PackageInfoImpl(); - TryReturn(__pPackageInfoImpl, INSTALLER_ERROR_MEMORY, "[osp-installer] __pPackageInfoImpl is null."); + TryReturn(__pPackageInfoImpl, INSTALLER_ERROR_OUT_OF_MEMORY, "[osp-installer] __pPackageInfoImpl is null."); __pAppDataList = new (std::nothrow) ArrayListT<AppData*>; - TryReturn(__pAppDataList, INSTALLER_ERROR_MEMORY, "[osp-installer] __pAppDataList is null"); + TryReturn(__pAppDataList, INSTALLER_ERROR_OUT_OF_MEMORY, "[osp-installer] __pAppDataList is null"); return INSTALLER_ERROR_NONE; } |