Skip to content

Commit

Permalink
eliminate compiler exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Apr 30, 2022
1 parent 7bd8a5c commit 2eba158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magick/fourier.c
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ static MagickBooleanType InverseFourier(FourierInfo *fourier_info,
sizeof(*magnitude_pixels));
phase_info=AcquireVirtualMemory(fourier_info->width,fourier_info->height*
sizeof(*phase_pixels));
inverse_info=AcquireVirtualMemory((fourier_info->width,(fourier_info->height/
inverse_info=AcquireVirtualMemory(fourier_info->width,(fourier_info->height/
2+1)*sizeof(*inverse_pixels));
if ((magnitude_info == (MemoryInfo *) NULL) ||
(phase_info == (MemoryInfo *) NULL) ||
Expand Down

0 comments on commit 2eba158

Please sign in to comment.