summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/StringUtil.cpp
diff options
context:
space:
mode:
authorGlenn Rice <glennricster@gmail.com>2013-01-31 15:29:29 -0600
committerGlenn Rice <glennricster@gmail.com>2013-01-31 15:29:29 -0600
commitf7fa33f2d618206e6388cc023d17ceb6a04d6af2 (patch)
treed150ad01bb5df2634419a494b5426d79ec2ebb79 /Source/Core/Common/Src/StringUtil.cpp
parent0ffdd2607f4ce56e4a35e959d1f5adcc07959320 (diff)
Fix remaining compiler warnings.
Diffstat (limited to 'Source/Core/Common/Src/StringUtil.cpp')
-rw-r--r--Source/Core/Common/Src/StringUtil.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/StringUtil.cpp b/Source/Core/Common/Src/StringUtil.cpp
index 664987d350..e5c70b2c6b 100644
--- a/Source/Core/Common/Src/StringUtil.cpp
+++ b/Source/Core/Common/Src/StringUtil.cpp
@@ -69,7 +69,8 @@ std::string StringFromFormat(const char* format, ...)
delete[] buf;
#else
va_start(args, format);
- vasprintf(&buf, format, args);
+ if (vasprintf(&buf, format, args) < 0)
+ ERROR_LOG(COMMON, "Unable to allocate memory for string");
va_end(args);
std::string temp = buf;