mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 02:30:12 +02:00
Fix small memory leak in new join feature - see 5ab9168
This commit is contained in:
parent
fda06a62b0
commit
9d40a64120
@ -1369,6 +1369,9 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
for (sharp::InputDescriptor *input : baton->joinChannelIn) {
|
for (sharp::InputDescriptor *input : baton->joinChannelIn) {
|
||||||
delete input;
|
delete input;
|
||||||
}
|
}
|
||||||
|
for (sharp::InputDescriptor *input : baton->join) {
|
||||||
|
delete input;
|
||||||
|
}
|
||||||
delete baton;
|
delete baton;
|
||||||
|
|
||||||
// Decrement processing task counter
|
// Decrement processing task counter
|
||||||
|
@ -936,6 +936,24 @@
|
|||||||
...
|
...
|
||||||
fun:_ZN2v88internal18ArrayBufferSweeper10ReleaseAllEv
|
fun:_ZN2v88internal18ArrayBufferSweeper10ReleaseAllEv
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
cond_v8_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE
|
||||||
|
Memcheck:Cond
|
||||||
|
...
|
||||||
|
fun:_ZN2v88internal8compiler12PipelineImpl13OptimizeGraphEPNS1_7LinkageE
|
||||||
|
}
|
||||||
|
{
|
||||||
|
cond_v8_ZN2v88internal4Heap20HasLowAllocationRateEv
|
||||||
|
Memcheck:Cond
|
||||||
|
...
|
||||||
|
fun:_ZN2v88internal4Heap20HasLowAllocationRateEv
|
||||||
|
}
|
||||||
|
{
|
||||||
|
cond_v8_ZN2v88internal4Heap15RecomputeLimitsENS0_16GarbageCollectorENS_4base9TimeTicksE
|
||||||
|
Memcheck:Cond
|
||||||
|
...
|
||||||
|
fun:_ZN2v88internal4Heap15RecomputeLimitsENS0_16GarbageCollectorENS_4base9TimeTicksE
|
||||||
|
}
|
||||||
{
|
{
|
||||||
cond_node_Builtins_JSEntry
|
cond_node_Builtins_JSEntry
|
||||||
Memcheck:Cond
|
Memcheck:Cond
|
||||||
|
Loading…
x
Reference in New Issue
Block a user