mirror of
https://github.com/curl/curl.git
synced 2026-06-07 22:54:25 +03:00
runtests.pl: try fixing unitialized $allocs
``` Use of uninitialized value $allocs in numeric gt (>) at ../../tests/runtests.pl line 1729. ``` https://github.com/curl/curl/actions/runs/16178889943/job/45670573824?pr=17877#step:39:165
This commit is contained in:
parent
d2c0b6b2d6
commit
f01ca10aa3
1 changed files with 1 additions and 1 deletions
|
|
@ -1722,7 +1722,7 @@ sub singletest_check {
|
|||
$ok .= "m";
|
||||
}
|
||||
my @more=`$memanalyze -v "$logdir/$MEMDUMP"`;
|
||||
my $allocs;
|
||||
my $allocs = 0;
|
||||
my $max = 0;
|
||||
for(@more) {
|
||||
if(/^Allocations: (\d+)/) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue