Skip to content

Commit e7381e5

Browse files
committed
Alternative fix for 4340d60, uses existing StaySequential
1 parent 4340d60 commit e7381e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pipeline.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ class PipelineWorker : public Napi::AsyncWorker {
653653
if (across != 0 || down != 0) {
654654
int left;
655655
int top;
656-
compositeImage = compositeImage.copy_memory().replicate(across, down);
656+
compositeImage = sharp::StaySequential(compositeImage, access).replicate(across, down);
657657
if (composite->hasOffset) {
658658
std::tie(left, top) = sharp::CalculateCrop(
659659
compositeImage.width(), compositeImage.height(), image.width(), image.height(),

0 commit comments

Comments
 (0)