Merge revision 603 changes:

- Fix memory leak when returning zero-length strings from V8 (issue #581).

git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/963@605 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-04-25 20:01:47 +00:00
parent 1707bb75e5
commit c5e4fef620
2 changed files with 7 additions and 1 deletions

View File

@@ -411,7 +411,7 @@ public:
///
void clear()
{
if (!empty())
if (string_)
traits::clear(string_);
}