|
From: Peter O. <obe...@us...> - 2012-10-08 15:03:25
|
Update of /cvsroot/ltp/utils/analysis/lcov/bin
In directory vz-cvs-4.sog:/tmp/cvs-serv17728
Modified Files:
geninfo
Log Message:
geninfo: fix missing line data after last commit
Index: geninfo
===================================================================
RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/geninfo,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** geninfo 8 Oct 2012 13:02:45 -0000 1.113
--- geninfo 8 Oct 2012 15:03:23 -0000 1.114
***************
*** 2681,2684 ****
--- 2681,2685 ----
$fileorder->{$function} = $list;
}
+
#
# read_bb_word(handle[, description])
***************
*** 2904,2907 ****
--- 2905,2911 ----
}
$filename = solve_relative_path($base, $string);
+ if (!exists($bb->{$function}->{$filename})) {
+ $bb->{$function}->{$filename} = [];
+ }
next;
}
***************
*** 3100,3104 ****
}
$filename = solve_relative_path($base, $string);
! $bb->{$function}->{$filename} = [];
next;
}
--- 3104,3110 ----
}
$filename = solve_relative_path($base, $string);
! if (!exists($bb->{$function}->{$filename})) {
! $bb->{$function}->{$filename} = [];
! }
next;
}
|