diff options
| author | callum_linden <none@none> | 2014-10-17 15:00:14 -0700 | 
|---|---|---|
| committer | callum_linden <none@none> | 2014-10-17 15:00:14 -0700 | 
| commit | 6fadab686dc60190b842942f9f0478d8b665c906 (patch) | |
| tree | 32d628f3097255d0d670a42eddc435de801f8d1f | |
| parent | f29280923974021f36365db386e37448b720d4f6 (diff) | |
Update to build on Xcode 6.0: variable (result) can be unitialized if condition is false (TAKE 2) [-Wsometimes-uninitialized]
| -rwxr-xr-x | indra/llvfs/llvfs_objc.mm | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llvfs/llvfs_objc.mm b/indra/llvfs/llvfs_objc.mm index d66c440367..282ea41339 100755 --- a/indra/llvfs/llvfs_objc.mm +++ b/indra/llvfs/llvfs_objc.mm @@ -48,7 +48,7 @@ std::string* findSystemDirectory(NSSearchPathDirectory searchPathDirectory,  {      NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -    std::string *result=""; +    std::string *result = nil;      NSString *path = nil;      // Search for the path | 
