Mentions légales du service

Skip to content
Snippets Groups Projects

Sonarqube

Merged Mathieu Faverge requested to merge faverge/chameleon:sonarqube into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -199,10 +199,10 @@ int testing_zpotri(int argc, char **argv)
MORSE_Complex64_t *WORK = (MORSE_Complex64_t *)malloc(2*LDA*sizeof(MORSE_Complex64_t));
/* Check if unable to allocate memory */
if ( (!A1) || (!A2) || (!work) )
if ( (!A1) || (!A2) || (!WORK) )
{
free(A1); free(A2);
free(work);
free(WORK);
printf("Out of Memory \n ");
return -2;
}
Loading