Commit 1e55dd14 authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

correct first 2 valgrind errors (one to double check by Giovanni)

parent 7384272f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -834,8 +834,8 @@ void hjv(
  const int rfj_size = (lit > lmt) ? lit : lmt;
  const int rfn_size = c4->litpo;
  double *rfj, *rfn;
  rfj = new double[rfj_size]();
  rfn = new double[rfn_size]();
  rfj = new double[rfj_size+1]();
  rfn = new double[rfn_size+1]();
  jer = 0;
  int ivhb = 0;
  for (int nf40 = 1; nf40 <= nsphmo; nf40++) { // GPU portable?
+1 −1

File changed.

Contains only whitespace changes.