summaryrefslogtreecommitdiff
path: root/winaccessibility
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2014-01-27 17:59:51 +0000
committerMichael Meeks <michael.meeks@collabora.com>2014-01-27 18:01:05 +0000
commit7f2a2d2b05e64ee425f95d189ed6ef32d8895ab9 (patch)
tree4f857106df984c2bb8463188ba02c96e47e94a43 /winaccessibility
parent2dd8e2ce5c61fc14035e4a0732194c926539714c (diff)
fdo#73464 - get relation BSTR allocation right.
Change-Id: I270bc9c8e0507f44d2c27639e86002c60f4e2e6d
Diffstat (limited to 'winaccessibility')
-rw-r--r--winaccessibility/source/UAccCOM/AccRelation.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/winaccessibility/source/UAccCOM/AccRelation.cxx b/winaccessibility/source/UAccCOM/AccRelation.cxx
index ec528301d82d..81e7fed1e037 100644
--- a/winaccessibility/source/UAccCOM/AccRelation.cxx
+++ b/winaccessibility/source/UAccCOM/AccRelation.cxx
@@ -206,9 +206,7 @@ BSTR CAccRelation::getRelationTypeBSTR(int type)
{IA2_RELATION_DESCRIBED_BY , 10},
};
- USES_CONVERSION;
-
- return (type >= 0 && type <= 10) ? map[type].string : _T("");
+ return ::SysAllocString((type >= 0 && type <= 10) ? map[type].string : _T(""));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */