aboutsummaryrefslogtreecommitdiffhomepage
path: root/wutil.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-09 19:26:44 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-09 19:26:44 -0800
commit910863e9ea5e1a4db192b5be1630d125cff18485 (patch)
treec754d5761aa3537ac5cd8a031d62d1537700b633 /wutil.cpp
parenta38490429b5d6fd4490708990b01b1662b059daf (diff)
Final removal of halloc. It's like Christmas Morning.
Diffstat (limited to 'wutil.cpp')
-rw-r--r--wutil.cpp21
1 files changed, 5 insertions, 16 deletions
diff --git a/wutil.cpp b/wutil.cpp
index b486dc8e..e552df61 100644
--- a/wutil.cpp
+++ b/wutil.cpp
@@ -29,8 +29,6 @@
#include "common.h"
#include "wutil.h"
-#include "halloc.h"
-#include "halloc_util.h"
typedef std::string cstring;
@@ -337,27 +335,18 @@ const wchar_t *wgettext( const wchar_t *in )
return wres;
}
-wchar_t *wgetenv( const wchar_t *name )
+const wchar_t *wgetenv( const wchar_t *name )
{
+ ASSERT_IS_MAIN_THREAD();
cstring name_narrow = wcs2string(name);
char *res_narrow = getenv( name_narrow.c_str() );
- static string_buffer_t *out = 0;
+ static wcstring out;
if( !res_narrow )
return 0;
- if( !out )
- {
- out = sb_halloc( global_context );
- }
- else
- {
- sb_clear( out );
- }
-
- sb_printf( out, L"%s", res_narrow );
-
- return (wchar_t *)out->buff;
+ out = format_string(L"%s", res_narrow);
+ return out.c_str();
}