Fixed another bunch of warnings

This commit is contained in:
heckflosse
2017-04-03 21:01:28 +02:00
parent 602162a343
commit 9b5f429602
11 changed files with 25 additions and 28 deletions

View File

@@ -934,7 +934,7 @@ void ImProcFunctions::sharpeningcam (CieImage* ncie, float** b2)
// Rest is UNSHARP MASK
int W = ncie->W, H = ncie->H;
float** b3;
float** b3 = nullptr;
if (params->sharpening.edgesonly) {
b3 = new float*[H];