<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body><span class="vcard"><a class="email" href="mailto:iplaw67@tuta.io" title="Alex Thurgood <iplaw67@tuta.io>"> <span class="fn">Alex Thurgood</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - SfxUndoManager_Data::SfxUndoManager_Data leaks memory with multiple invocations"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=112657">bug 112657</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">Status</td>
<td>UNCONFIRMED
</td>
<td>NEW
</td>
</tr>
<tr>
<td style="text-align:right;">Ever confirmed</td>
<td>
</td>
<td>1
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - SfxUndoManager_Data::SfxUndoManager_Data leaks memory with multiple invocations"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=112657#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - SfxUndoManager_Data::SfxUndoManager_Data leaks memory with multiple invocations"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=112657">bug 112657</a>
from <span class="vcard"><a class="email" href="mailto:iplaw67@tuta.io" title="Alex Thurgood <iplaw67@tuta.io>"> <span class="fn">Alex Thurgood</span></a>
</span></b>
<pre>Confirming, and allegedly leaking here :
struct SfxUndoActions::Impl
{
std::vector<MarkedUndoAction> maActions;
};
SfxUndoActions::SfxUndoActions() : mpImpl(new Impl) {}
SfxUndoActions::SfxUndoActions( const SfxUndoActions& r ) :
mpImpl(new Impl)
{
mpImpl->maActions = r.mpImpl->maActions;
}
SfxUndoActions::~SfxUndoActions()
{
}
in undo.cxx, lines 152-167</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>