==3549008== Memcheck, a memory error detector ==3549008== Copyright (C) 2002-2026, and GNU GPL'd, by Julian Seward et al. ==3549008== Using Valgrind-3.27.1 and LibVEX; rerun with -h for copyright info ==3549008== Command: /data/localhost/ripley/R/R-devel-vg/bin/exec/R --vanilla ==3549008== R Under development (unstable) (2026-07-27 r90310) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > pkgname <- "growth" > source(file.path(R.home("share"), "R", "examples-header.R")) > options(warn = 1) > library('growth') Loading required package: rmutil Attaching package: ‘rmutil’ The following object is masked from ‘package:stats’: nobs The following objects are masked from ‘package:base’: as.data.frame, units > > base::assign(".oldSearch", base::search(), pos = 'CheckExEnv') > base::assign(".old_wd", base::getwd(), pos = 'CheckExEnv') > cleanEx() > nameEx("carma") > ### * carma > > flush(stderr()); flush(stdout()) > > ### Name: carma > ### Title: Continuous ARMA for Unequally Spaced Repeated Measurements > ### Aliases: carma fitted.carma mprofile.carma residuals.carma coef.carma > ### deviance.carma print.carma > ### Keywords: models > > ### ** Examples > > > y <- matrix(rnorm(40),ncol=5) > x1 <- gl(2,4) > x2 <- gl(2,1,8) > # independence with time trend > carma(y, ccov=~x1, torder=2) Call: carma(y, ccov = ~x1, torder = 2) Number of subjects 8 Number of observations 40 Mean time 3 Transformation identity -Log likelihood 51.32904 Degrees of freedom 35 AIC 56.32904 Estimates of linear parameters Formula: x1 estimate se (Intercept) 0.16555 0.26944 t^1 -0.03105 0.10290 t^2 -0.02501 0.08696 x12 -0.04701 0.29103 Correlation matrix of linear parameters 1 2 3 4 1 1.0000 0 -6.455e-01 -5.401e-01 2 0.0000 1 0.000e+00 0.000e+00 3 -0.6455 0 1.000e+00 -2.123e-16 4 -0.5401 0 -2.123e-16 1.000e+00 (REML) Variance 0.8469917 > # AR(1) > carma(y, ccov=~x1, torder=2, arma=c(1,0,0), parma=-0.5) Call: carma(y, ccov = ~x1, torder = 2, arma = c(1, 0, 0), parma = -0.5) Number of subjects 8 Number of observations 40 Mean time 3 Transformation identity -Log likelihood 51.28129 Degrees of freedom 34 AIC 57.28129 Iterations 5 Estimates of linear parameters Formula: x1 estimate se (Intercept) 0.15891 0.28223 t^1 -0.03126 0.10642 t^2 -0.02395 0.08804 x12 -0.03715 0.30758 Correlation matrix of linear parameters 1 2 3 4 1 1.000e+00 -9.431e-17 -6.373e-01 -5.449e-01 2 -9.431e-17 1.000e+00 1.480e-16 4.172e-18 3 -6.373e-01 1.480e-16 1.000e+00 -2.209e-16 4 -5.449e-01 4.172e-18 -2.209e-16 1.000e+00 (REML) Variance 0.8710088 Estimates of nonlinear parameters Autoregression estimate se AR 1 1.083 1.094 0.05215 > carma(y, ccov=~x1, torder=3, interact=3, arma=c(1,0,0), parma=-1) Call: carma(y, ccov = ~x1, torder = 3, interact = 3, arma = c(1, 0, 0), parma = -1) Number of subjects 8 Number of observations 40 Mean time 3 Transformation identity -Log likelihood 48.24073 Degrees of freedom 30 AIC 58.24073 Iterations 1 Estimates of linear parameters Formula: x1 estimate se (Intercept) 0.40401 0.3199 t^1 -0.50216 0.4362 t^2 -0.14424 0.1227 t^3 0.09781 0.1210 x12 -0.52393 0.4524 x12.t^1 0.98004 0.6168 x12.t^2 0.23846 0.1735 x12.t^3 -0.20673 0.1711 Correlation matrix of linear parameters 1 2 3 4 5 6 7 8 1 1.0000 0.0000 -0.7670 0.0000 -0.7071 0.0000 0.5423 0.0000 2 0.0000 1.0000 0.0000 -0.9430 0.0000 -0.7071 0.0000 0.6668 3 -0.7670 0.0000 1.0000 0.0000 0.5423 0.0000 -0.7071 0.0000 4 0.0000 -0.9430 0.0000 1.0000 0.0000 0.6668 0.0000 -0.7071 5 -0.7071 0.0000 0.5423 0.0000 1.0000 0.0000 -0.7670 0.0000 6 0.0000 -0.7071 0.0000 0.6668 0.0000 1.0000 0.0000 -0.9430 7 0.5423 0.0000 -0.7071 0.0000 -0.7670 0.0000 1.0000 0.0000 8 0.0000 0.6668 0.0000 -0.7071 0.0000 -0.9430 0.0000 1.0000 (REML) Variance 0.842865 Estimates of nonlinear parameters Autoregression estimate se AR 1 5.187 Inf 1.882e-78 > # ARMA(2,1) > carma(y, ccov=~x1+x2, interact=c(2,0), torder=3,arma=c(2,1,0), + parma=c(0.3,2,0.7)) ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C6A08C: log@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_log_template.c:32) ==3549008== by 0xBF16666: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:885) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7833: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:60) ==3549008== by 0xBF16666: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:885) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA791D: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:64) ==3549008== by 0xBF16666: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:885) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7849: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:84) ==3549008== by 0xBF16666: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:885) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CA78B4: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:121) ==3549008== by 0xBF16666: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:885) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF12639: factor_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1013) ==3549008== by 0xBF16B61: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:954) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF12684: factor_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1027) ==3549008== by 0xBF16B61: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:954) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1277E: factor_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1013) ==3549008== by 0xBF16B61: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:954) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C6A08C: log@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_log_template.c:32) ==3549008== by 0xBF16BC7: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:962) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7833: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:60) ==3549008== by 0xBF16BC7: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:962) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7849: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:84) ==3549008== by 0xBF16BC7: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:962) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CA78B4: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:121) ==3549008== by 0xBF16BC7: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:962) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0xBEB74DE: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:749) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5EF81C: optchk (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2047) ==3549008== by 0x5EF81C: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2252) ==3549008== by 0x5EF81C: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5EF81E: optchk (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2047) ==3549008== by 0x5EF81E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2252) ==3549008== by 0x5EF81E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5EF824: optchk (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2047) ==3549008== by 0x5EF824: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2252) ==3549008== by 0x5EF824: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EF9C0: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2266) ==3549008== by 0x5EF9C0: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EE636: fstofd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1635) ==3549008== by 0x5F2675: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2272) ==3549008== by 0x5F2675: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EF039: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1935) ==3549008== by 0x5EFA63: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2283) ==3549008== by 0x5EFA63: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5EF0C2: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1942) ==3549008== by 0x5EFA63: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2283) ==3549008== by 0x5EFA63: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x485C5C1: daxpy_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:242) ==3549008== by 0x5DFFF1: dtrsl_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dtrsl.f:105) ==3549008== by 0x5EE801: lltslv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:237) ==3549008== by 0x5F0136: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2348) ==3549008== by 0x5F0136: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F13C0: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:659) ==3549008== by 0x5F13C0: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F13C0: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F13D9: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:660) ==3549008== by 0x5F13D9: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F13D9: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB537A: FT_lookup.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:487) ==3549008== by 0xBEB5B17: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:510) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x49849A: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1814) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA71DF: __ieee754_exp_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_exp.c:104) ==3549008== by 0x4C69EE6: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:32) ==3549008== by 0xBF13259: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:423) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CA7245: __ieee754_exp_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_exp.c:150) ==3549008== by 0x4C69EE6: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:32) ==3549008== by 0xBF13259: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:423) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7273: __ieee754_exp_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_exp.c:151) ==3549008== by 0x4C69EE6: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:32) ==3549008== by 0xBF13259: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:423) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C69EFF: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:33) ==3549008== by 0xBF13259: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:423) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C69F09: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:33) ==3549008== by 0xBF13259: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:423) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C69F0B: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:33) ==3549008== by 0xBF13259: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:423) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA71DF: __ieee754_exp_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_exp.c:104) ==3549008== by 0x4C69EE6: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:32) ==3549008== by 0xBF131B0: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:422) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CA7245: __ieee754_exp_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_exp.c:150) ==3549008== by 0x4C69EE6: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:32) ==3549008== by 0xBF131B0: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:422) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7273: __ieee754_exp_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_exp.c:151) ==3549008== by 0x4C69EE6: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:32) ==3549008== by 0xBF131B0: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:422) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C69EFF: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:33) ==3549008== by 0xBF131B0: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:422) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C69F09: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:33) ==3549008== by 0xBF131B0: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:422) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C69F0B: exp@@GLIBC_2.29 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./w_exp_template.c:33) ==3549008== by 0xBF131B0: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:422) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF131EB: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:426) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1321A: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:434) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1321C: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:434) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF13231: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:435) ==3549008== by 0xBF1590D: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:639) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF12F05: cvert_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:527) ==3549008== by 0xBF15989: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:646) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF12BEA: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:488) ==3549008== by 0xBF159AE: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:647) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877CC: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:30) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877D9: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:30) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877E2: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:30) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877EB: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877F4: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C879C7: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA74B7: __expf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/e_expf.c:61) ==3549008== by 0x4C87938: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:73) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CA7505: __expf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/e_expf.c:97) ==3549008== by 0x4C87938: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:73) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C87966: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:77) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C87972: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:77) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF172A3: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:813) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878D3: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878E0: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878ED: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878FA: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:42) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CAD663: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:50) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CAD6DA: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:66) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CAD821: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:48) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CAD840: sincosf_poly (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:78) ==3549008== by 0x4CAD840: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:76) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CAD84D: sincosf_poly (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:64) ==3549008== by 0x4CAD84D: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:76) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CAD84D: sincosf_poly (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:64) ==3549008== by 0x4CAD84D: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:76) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CAD883: v2df_to_sf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:28) ==3549008== by 0x4CAD883: sincosf_poly (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:80) ==3549008== by 0x4CAD883: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:76) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CAD887: v2df_to_sf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:29) ==3549008== by 0x4CAD887: sincosf_poly (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/x86/fpu/sincosf_poly.h:80) ==3549008== by 0x4CAD887: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:76) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C8792B: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:52) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F15BA: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:683) ==3549008== by 0x5F15BA: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F15BA: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F15CD: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:693) ==3549008== by 0x5F15CD: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F15CD: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F15DB: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:703) ==3549008== by 0x5F15DB: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F15DB: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1703: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:721) ==3549008== by 0x5F1703: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1703: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F188D: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:726) ==3549008== by 0x5F188D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F188D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F2683: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2272) ==3549008== by 0x5F2683: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1968: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:686) ==3549008== by 0x5F1968: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1968: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EE5F6: fstofd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1632) ==3549008== by 0x5F2C96: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2407) ==3549008== by 0x5F2C96: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB537A: FT_lookup.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:487) ==3549008== by 0xBEB5B17: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:510) ==3549008== by 0x5EE636: fstofd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1635) ==3549008== by 0x5F2C96: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2407) ==3549008== by 0x5F2C96: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5EE636: fstofd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1635) ==3549008== by 0x5F2C96: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2407) ==3549008== by 0x5F2C96: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EE636: fstofd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1635) ==3549008== by 0x5F2C96: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2407) ==3549008== by 0x5F2C96: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EF039: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1935) ==3549008== by 0x5F1A8A: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2416) ==3549008== by 0x5F1A8A: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EF0A0: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1938) ==3549008== by 0x5F1A8A: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2416) ==3549008== by 0x5F1A8A: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5EF0C2: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1942) ==3549008== by 0x5F1A8A: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2416) ==3549008== by 0x5F1A8A: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EF123: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1952) ==3549008== by 0x5F1A8A: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2416) ==3549008== by 0x5F1A8A: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5EF148: opt_stop.isra.0 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1956) ==3549008== by 0x5F1A8A: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2416) ==3549008== by 0x5F1A8A: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3AD: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:147) ==3549008== by 0x5F1B81: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1284) ==3549008== by 0x5F1B81: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1B81: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3B3: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:150) ==3549008== by 0x5F1B81: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1284) ==3549008== by 0x5F1B81: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1B81: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3AD: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:147) ==3549008== by 0x5F1B97: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1285) ==3549008== by 0x5F1B97: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1B97: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3B3: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:150) ==3549008== by 0x5F1B97: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1285) ==3549008== by 0x5F1B97: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1B97: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1BC5: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1287) ==3549008== by 0x5F1BC5: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1BC5: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1CF4: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1295) ==3549008== by 0x5F1CF4: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1CF4: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5F1E87: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1318) ==3549008== by 0x5F1E87: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1E87: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1E9E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1319) ==3549008== by 0x5F1E9E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1E9E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1FCA: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:403) ==3549008== by 0x5F1FCA: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F1FCA: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1FCA: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1FCC: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:403) ==3549008== by 0x5F1FCC: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F1FCC: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F1FCC: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F200B: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:414) ==3549008== by 0x5F200B: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F200B: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F200B: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C7139C: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:98) ==3549008== by 0x5EEE74: qraux2 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:364) ==3549008== by 0x5F376E: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:418) ==3549008== by 0x5F376E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F376E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F376E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713B2: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:98) ==3549008== by 0x5EEE74: qraux2 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:364) ==3549008== by 0x5F376E: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:418) ==3549008== by 0x5F376E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F376E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F376E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713D0: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:113) ==3549008== by 0x5EEE74: qraux2 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:364) ==3549008== by 0x5F376E: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:418) ==3549008== by 0x5F376E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F376E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F376E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713E2: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:123) ==3549008== by 0x5EEE74: qraux2 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:364) ==3549008== by 0x5F376E: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:418) ==3549008== by 0x5F376E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F376E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F376E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== ==3549008== More than 100 errors detected. Subsequent errors ==3549008== will still be recorded, but in less detail than before. ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713F8: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:134) ==3549008== by 0x5EEE74: qraux2 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:364) ==3549008== by 0x5F376E: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:418) ==3549008== by 0x5F376E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F376E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F376E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C71422: kernel (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:77) ==3549008== by 0x4C71422: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:137) ==3549008== by 0x5EEE74: qraux2 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:364) ==3549008== by 0x5F376E: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:418) ==3549008== by 0x5F376E: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F376E: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F376E: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C7139C: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:98) ==3549008== by 0x5F377D: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:419) ==3549008== by 0x5F377D: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F377D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F377D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713B2: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:98) ==3549008== by 0x5F377D: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:419) ==3549008== by 0x5F377D: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F377D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F377D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713D0: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:113) ==3549008== by 0x5F377D: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:419) ==3549008== by 0x5F377D: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F377D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F377D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713E2: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:123) ==3549008== by 0x5F377D: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:419) ==3549008== by 0x5F377D: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F377D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F377D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C713F8: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:134) ==3549008== by 0x5F377D: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:419) ==3549008== by 0x5F377D: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F377D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F377D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C71422: kernel (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:77) ==3549008== by 0x4C71422: hypot@@GLIBC_2.35 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_hypot.c:137) ==3549008== by 0x5F377D: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:419) ==3549008== by 0x5F377D: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F377D: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F377D: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F2011: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:414) ==3549008== by 0x5F2011: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F2011: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F2011: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F34FB: qrupdt (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:434) ==3549008== by 0x5F34FB: secfac (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1350) ==3549008== by 0x5F34FB: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2427) ==3549008== by 0x5F34FB: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DFBD2: dtrsl_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dtrsl.f:75) ==3549008== by 0x5EE801: lltslv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:237) ==3549008== by 0x5F0136: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2348) ==3549008== by 0x5F0136: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DFBD4: dtrsl_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dtrsl.f:75) ==3549008== by 0x5EE801: lltslv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:237) ==3549008== by 0x5F0136: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2348) ==3549008== by 0x5F0136: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DFBD2: dtrsl_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dtrsl.f:75) ==3549008== by 0x5EE828: lltslv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:239) ==3549008== by 0x5F0136: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2348) ==3549008== by 0x5F0136: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DFBD4: dtrsl_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dtrsl.f:75) ==3549008== by 0x5EE828: lltslv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:239) ==3549008== by 0x5F0136: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2348) ==3549008== by 0x5F0136: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5F1480: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:669) ==3549008== by 0x5F1480: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1480: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5F1987: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:686) ==3549008== by 0x5F1987: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1987: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CAD66B: __sincosf_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/flt-32/s_sincosf.c:54) ==3549008== by 0x4C87919: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:44) ==3549008== by 0xBF16EFD: kalman_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:803) ==3549008== by 0x4997C1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2088) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0xBEB5C09: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:521) ==3549008== by 0x5F1576: lnsrch (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:682) ==3549008== by 0x5F1576: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2364) ==3549008== by 0x5F1576: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EDED8: fstocd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1676) ==3549008== by 0x5F191C: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2384) ==3549008== by 0x5F191C: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5EDF03: fstocd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1678) ==3549008== by 0x5F191C: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2384) ==3549008== by 0x5F191C: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EDF03: fstocd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1678) ==3549008== by 0x5F191C: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2384) ==3549008== by 0x5F191C: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5EDF24: fstocd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1680) ==3549008== by 0x5F191C: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2384) ==3549008== by 0x5F191C: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EDF24: fstocd (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:1680) ==3549008== by 0x5F191C: optdrv (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2384) ==3549008== by 0x5F191C: optif9 (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:2620) ==3549008== by 0xBEB7980: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:850) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5FDF48: Rf_fmax2 (/data/localhost/ripley/R/svn/R-devel/src/nmath/fmax2.c:25) ==3549008== by 0x5EF341: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:91) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5EF39D: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:98) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EF39D: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:98) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5EF469: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:104) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EF469: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:104) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5BC6: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:518) ==3549008== by 0x5EF53B: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:110) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBEB5CAE: fcn (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:533) ==3549008== by 0x5EF53B: fdhess (/data/localhost/ripley/R/svn/R-devel/src/appl/uncmin.c:110) ==3549008== by 0xBEB7A82: nlm (/data/localhost/ripley/R/svn/R-devel/src/library/stats/src/optimize.c:863) ==3549008== by 0x4955E6: do_External (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:573) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF182B4: back_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1117) ==3549008== by 0x49A285: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1966) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF17FAF: ttvert_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1065) ==3549008== by 0x49A285: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1966) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF18068: ttvert_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1086) ==3549008== by 0x49A285: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1966) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1811B: ttvert_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:1065) ==3549008== by 0x49A285: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1966) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x419F78: Rsqrt (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1293) ==3549008== by 0x41A381: math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1271) ==3549008== by 0x41AB5C: do_math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1401) ==3549008== by 0x4DBB70: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8201) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x419F99: Rsqrt (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1295) ==3549008== by 0x419F99: Rsqrt (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1291) ==3549008== by 0x41A381: math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1271) ==3549008== by 0x41AB5C: do_math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1401) ==3549008== by 0x4DBB70: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8201) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x419FAC: Rsqrt (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1297) ==3549008== by 0x419FAC: Rsqrt (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1291) ==3549008== by 0x41A381: math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1271) ==3549008== by 0x41AB5C: do_math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1401) ==3549008== by 0x4DBB70: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8201) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x41A38D: math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1272) ==3549008== by 0x41AB5C: do_math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1401) ==3549008== by 0x4DBB70: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8201) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x429FE0: mayHaveNaNOrInf (/data/localhost/ripley/R/svn/R-devel/src/main/array.c:659) ==3549008== by 0x42F925: tcrossprod (/data/localhost/ripley/R/svn/R-devel/src/main/array.c:1166) ==3549008== by 0x42F925: do_matprod (/data/localhost/ripley/R/svn/R-devel/src/main/array.c:1532) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x429FE0: mayHaveNaNOrInf (/data/localhost/ripley/R/svn/R-devel/src/main/array.c:659) ==3549008== by 0x42F93D: tcrossprod (/data/localhost/ripley/R/svn/R-devel/src/main/array.c:1166) ==3549008== by 0x42F93D: do_matprod (/data/localhost/ripley/R/svn/R-devel/src/main/array.c:1532) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x518D93: checkValues (/data/localhost/ripley/R/svn/R-devel/src/main/logic.c:427) ==3549008== by 0x518D93: do_logic3 (/data/localhost/ripley/R/svn/R-devel/src/main/logic.c:488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== by 0x401E27: main (/data/localhost/ripley/R/svn/R-devel/src/main/Rmain.c:29) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x518DBD: checkValues (/data/localhost/ripley/R/svn/R-devel/src/main/logic.c:425) ==3549008== by 0x518DBD: do_logic3 (/data/localhost/ripley/R/svn/R-devel/src/main/logic.c:488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== by 0x401E27: main (/data/localhost/ripley/R/svn/R-devel/src/main/Rmain.c:29) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3AD: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:147) ==3549008== by 0x5DBB9C: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:103) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3B3: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:150) ==3549008== by 0x5DBB9C: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:103) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DBBC1: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:106) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DBDB1: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:125) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3AD: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:147) ==3549008== by 0x5DBFF1: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:153) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3B3: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:150) ==3549008== by 0x5DBFF1: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:153) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DBFFE: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:154) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DC014: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:155) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DC022: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:155) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4860AAF: dscal_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:3388) ==3549008== by 0x5DC096: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:156) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x485C5C1: daxpy_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:242) ==3549008== by 0x5DC29C: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:165) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DC2AF: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:166) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5DC2F4: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:174) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3AD: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:147) ==3549008== by 0x5DC322: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:177) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486C3B3: dnrm2_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas2.f90:150) ==3549008== by 0x5DC322: dqrdc2_ (/data/localhost/ripley/R/svn/R-devel/src/appl/dqrdc2.f:177) ==3549008== by 0x49A82F: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1994) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC100E44: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC100E4E: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC100E54: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC100E7B: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC100EAA: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4860AAF: dscal_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:3388) ==3549008== by 0xC100F5C: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC14C58C: dlaswp_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100C0B: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486B23B: dtrsm_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9190) ==3549008== by 0xC100C4F: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486B23D: dtrsm_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9190) ==3549008== by 0xC100C4F: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC100E89: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100BA3: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100D09: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC14C5C4: dlaswp_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100C0B: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100D09: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC100B3E: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100D09: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100D09: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC14C58C: dlaswp_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100DDC: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC14C5C4: dlaswp_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC100DDC: dgetrf2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F3692: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC14C58C: dlaswp_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC101CC1: dgetrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F36C4: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC14C5C4: dlaswp_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC101CC1: dgetrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F36C4: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486B23B: dtrsm_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9190) ==3549008== by 0xC101D01: dgetrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F36C4: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486B23D: dtrsm_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9190) ==3549008== by 0xC101D01: dgetrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F36C4: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486A9D3: dtrsm_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9174) ==3549008== by 0xC101D3F: dgetrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F36C4: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486A9D5: dtrsm_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9174) ==3549008== by 0xC101D3F: dgetrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0F36C4: dgesv_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF2898B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1251) ==3549008== by 0xBF2898B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF289D2: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1261) ==3549008== by 0xBF289D2: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC134EC2: dlange_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF298ED: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1265) ==3549008== by 0xBF298ED: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE223: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE243: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE26B: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE279: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DE51: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE4EF: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15DE5B: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE4EF: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15F6B5: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE4EF: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15F6C3: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE4EF: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486BFC1: dtrsv_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9584) ==3549008== by 0xC15F4E4: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE4EF: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DE51: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15DE5B: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DEB9: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15E615: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15E5E6: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15F494: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486BE7C: dtrsv_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9558) ==3549008== by 0xC15F4E4: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x486BE7E: dtrsv_ (/data/localhost/ripley/R/svn/R-devel/src/extra/blas/blas.f:9558) ==3549008== by 0xC15F4E4: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE538: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DE51: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE3F6: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15DE5B: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE3F6: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DEB9: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE3F6: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15E4EE: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE3F6: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15E4C6: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE3F6: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15F890: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE3F6: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DE51: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE43F: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15DE5B: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE43F: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC15DEB9: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE43F: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15F7ED: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE43F: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC15E4FC: dlatrs_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE43F: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0xC11F6C7: dlacn2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE48E: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC11F4DD: dlacn2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE48E: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC11F64E: dlacn2_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xC0DE48E: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE555: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE60C: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xC0DE625: dgecon_ (in /usr/lib64/liblapack.so.3.12.0) ==3549008== by 0xBF29943: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1268) ==3549008== by 0xBF29943: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF2995B: La_solve (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1270) ==3549008== by 0xBF2995B: mod_do_lapack (/data/localhost/ripley/R/svn/R-devel/src/modules/lapack/Lapack.c:1488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x532753: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:523) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C2F63C: sqrt (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/w_sqrt_compat.c:35) ==3549008== by 0x41A381: math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1271) ==3549008== by 0x41AB5C: do_math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1401) ==3549008== by 0x4DBB70: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8201) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x41A401: math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1273) ==3549008== by 0x41AB5C: do_math1 (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:1401) ==3549008== by 0x4DBB70: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8201) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Warning in sqrt(diag(nlcov)) : NaNs produced ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF131EB: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:426) ==3549008== by 0xBF13446: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:108) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1321A: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:434) ==3549008== by 0xBF13446: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:108) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1321C: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:434) ==3549008== by 0xBF13446: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:108) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF13231: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:435) ==3549008== by 0xBF13446: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:108) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF12F05: cvert_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:527) ==3549008== by 0xBF134CC: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:115) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF12BEA: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:488) ==3549008== by 0xBF134EF: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:116) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877CC: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:30) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877D9: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:30) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877E2: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:30) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877EB: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C877F4: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C879C7: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C87966: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:77) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C87972: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:77) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1510D: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:270) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== by 0x51D80D: Rf_mainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1244) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878D3: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878E0: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878ED: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:31) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C878FA: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:42) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C8792B: cexpf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/./s_cexp_template.c:52) ==3549008== by 0xBF14D73: resid_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:262) ==3549008== by 0x498ED1: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:2074) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E4A38: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x4E4A38: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1278) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4D9A29: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7923) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Call: carma(y, ccov = ~x1 + x2, interact = c(2, 0), torder = 3, arma = c(2, 1, 0), parma = c(0.3, 2, 0.7)) Number of subjects 8 Number of observations 40 Mean time 3 Transformation identity -Log likelihood ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE03: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:446) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0D: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0D: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE15: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE15: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C2F0CC: log10 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/w_log10_compat.c:30) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C7A186: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:67) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4C7A1CF: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:78) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7833: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:60) ==3549008== by 0x4C7A23C: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA7849: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:84) ==3549008== by 0x4C7A23C: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4CA78B4: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:121) ==3549008== by 0x4C7A23C: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE77: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:349) ==3549008== by 0x4EEE77: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE7F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EEE7F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF262: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF262: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4EF2E8: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF2E8: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF303: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:362) ==3549008== by 0x4EF303: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEEF7: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:397) ==3549008== by 0x4EEEF7: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEF08: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:420) ==3549008== by 0x4EEF08: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4EEF2F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:418) ==3549008== by 0x4EEF2F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4EEF39: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:420) ==3549008== by 0x4EEF39: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEF56: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:420) ==3549008== by 0x4EEF56: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF032: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:494) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF1C5: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:496) ==3549008== by 0x56253C: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:864) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F30: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F36: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x561088: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:209) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5691AA2: _itoa_word (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/_fitoa_word.c:38) ==3549008== by 0x569A97E: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:155) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56114D: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:225) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5691AA9: _itoa_word (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/_fitoa_word.c:38) ==3549008== by 0x569A97E: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:155) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56114D: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:225) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569ADF8: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:186) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56114D: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:225) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569A8E2: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:208) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56114D: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:225) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693851: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:230) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569386B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:230) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568DA43: __mpn_extract_double (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/ieee754/dbl-64/dbl2mpn.c:56) ==3549008== by 0x5693FEE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:230) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693905: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:271) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693926: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:271) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693928: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:271) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569395B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:272) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569397C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:272) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569397E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:272) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56939AE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:273) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56939CF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:273) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x56939D1: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:273) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56939EE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:280) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693A0A: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:297) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569498B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:305) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5DC: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:59) ==3549008== by 0x569498F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:305) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5DF: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:60) ==3549008== by 0x569498F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:305) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56949BA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:310) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5695117: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:311) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693A42: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:313) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693AFF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:322) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F14A: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693AC5: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693AC5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:369) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F157: is_overlap (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:145) ==3549008== by 0x484F157: is_overlap (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:132) ==3549008== by 0x484F157: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693AC5: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693AC5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:369) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F177: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693AC5: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693AC5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:369) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F2E4: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693AC5: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693AC5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:369) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693AD1: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:385) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693AD3: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:385) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568BDA6: __mpn_cmp (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/cmp.c:37) ==3549008== by 0x569456F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:385) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568BDAA: __mpn_cmp (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/cmp.c:38) ==3549008== by 0x569456F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:385) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568BDB1: __mpn_cmp (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/cmp.c:39) ==3549008== by 0x569456F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:385) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694576: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:385) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F14A: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693B64: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693B64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:388) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F2E1: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693B64: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693B64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:388) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F2E4: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693B64: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693B64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:388) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F2EF: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x5693B64: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x5693B64: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:388) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693B6D: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:389) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693BC9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:407) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693BE9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:407) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693C1E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:407) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694FB9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:439) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694FBF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:439) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5695183: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:442) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7AC: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:62) ==3549008== by 0x5694FDF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:458) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7D1: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:73) ==3549008== by 0x5694FDF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:458) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D759: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:31) ==3549008== by 0x5695000: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:461) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D780: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:45) ==3549008== by 0x5695000: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:461) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7AA: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:61) ==3549008== by 0x5695000: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:461) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7AC: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:62) ==3549008== by 0x5695000: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:461) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7BD: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:67) ==3549008== by 0x5695000: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:461) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7D1: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:73) ==3549008== by 0x5695000: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:461) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5695012: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:463) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5695018: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:463) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56934B7: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:101) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C198: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:62) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C19D: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:61) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568C1BA: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:71) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C1D0: udiv_qrnnd_x86 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86/gmp-arch.h:29) ==3549008== by 0x568C1D0: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:72) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C1DF: udiv_qrnnd_x86 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86/gmp-arch.h:29) ==3549008== by 0x568C1DF: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:72) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568C1E7: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:71) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C212: __mpn_divrem (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/divrem.c:78) ==3549008== by 0x5693514: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:105) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693524: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:107) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569352C: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:108) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569353C: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:111) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693550: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:111) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CAD8: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==3549008== by 0x56934CF: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:122) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CAFC: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:52) ==3549008== by 0x56934CF: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:122) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56934D8: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:123) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x56934EA: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:124) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693524: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:107) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569352C: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:108) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569353C: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:111) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693550: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:111) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56934D8: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:123) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x56934EA: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:124) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694134: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:805) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693524: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:107) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569352C: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:108) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569353C: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:111) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693550: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:111) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56934D8: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:123) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x56934EA: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:124) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569415F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:808) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56941DE: round_away (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/rounding-mode.h:52) ==3549008== by 0x56941DE: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:825) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56941E3: round_away (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/rounding-mode.h:52) ==3549008== by 0x56941E3: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:825) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694650: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:835) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694679: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:835) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694699: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:842) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56946B2: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:855) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569433F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:987) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x562566: Rf_EncodeElement0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:865) ==3549008== by 0x44BE99: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:660) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484AAFD: strncpy (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:611) ==3549008== by 0x44BEAE: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:661) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484A7A9: strlen (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:506) ==3549008== by 0x44BEBE: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:677) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484A7B8: strlen (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:506) ==3549008== by 0x44BEBE: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:677) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484A7A9: strlen (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:506) ==3549008== by 0x569B3B9: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:443) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x44BF39: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:684) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484A7B8: strlen (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:506) ==3549008== by 0x569B3B9: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:443) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x44BF39: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:684) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Syscall param write(buf) points to uninitialised byte(s) ==3549008== at 0x5745F7D: write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/io/../sysdeps/unix/sysv/linux/write.c:26) ==3549008== by 0x56C6E3C: _IO_file_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:1241) ==3549008== by 0x56C4BB5: new_do_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:483) ==3549008== by 0x56C5D10: _IO_do_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:460) ==3549008== by 0x56C6407: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:833) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x44BF39: do_cat (/data/localhost/ripley/R/svn/R-devel/src/main/builtin.c:684) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Address 0x9ed09c0 is 0 bytes inside a block of size 4,096 alloc'd ==3549008== at 0x4840AE6: malloc (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/coregrind/m_replacemalloc/vg_replace_malloc.c:447) ==3549008== by 0x56B7F42: _IO_file_doallocate (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/filedoalloc.c:91) ==3549008== by 0x56C84B5: _IO_doallocbuf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/genops.c:373) ==3549008== by 0x56C84B5: _IO_doallocbuf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/genops.c:368) ==3549008== by 0x56C62B8: _IO_file_overflow@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:779) ==3549008== by 0x56C6F87: _IO_new_file_xsputn (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:1305) ==3549008== by 0x56C6F87: _IO_file_xsputn@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:1258) ==3549008== by 0x5693295: __printf_buffer_flush_to_file (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_buffer_to_file.c:59) ==3549008== by 0x569337B: __printf_buffer_to_file_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_buffer_to_file.c:120) ==3549008== by 0x569EB6F: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1549) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x5D7812: Rf_PrintGreeting (/data/localhost/ripley/R/svn/R-devel/src/main/version.c:33) ==3549008== by 0x51BFE1: setup_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1118) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== 47.81666 Degrees of freedom 28 AIC 59.81666 Iterations 29 Estimates of linear parameters Formula: x1 + x2 ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE03: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:446) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0D: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0D: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE15: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE15: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE77: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:349) ==3549008== by 0x4EEE77: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE7F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EEE7F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF262: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF262: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4EF2E8: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF2E8: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF303: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:362) ==3549008== by 0x4EF303: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEEF7: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:397) ==3549008== by 0x4EEEF7: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEF08: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:420) ==3549008== by 0x4EEF08: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF032: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:494) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF1C5: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:496) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x55B8C7: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4CA791D: __ieee754_log_fma (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log.c:64) ==3549008== by 0x4C7A23C: __log10_finite@GLIBC_2.15 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/math/../sysdeps/ieee754/dbl-64/e_log10.c:87) ==3549008== by 0x4EEE49: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:345) ==3549008== by 0x4EEE49: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x55B9F3: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569A026: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1313) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569A624: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:463) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569A637: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:163) ==3549008== by 0x569A637: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F04D: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F0A2: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F0E1: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F0EE: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F0FA: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F10E: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693003: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:43) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569340F: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:33) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F137: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F14A: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F186: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F18E: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F1E3: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F1EE: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693406: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:31) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5693220: __printf_buffer_flush_to_file (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_buffer_to_file.c:91) ==3549008== by 0x569337B: __printf_buffer_to_file_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_buffer_to_file.c:120) ==3549008== by 0x569EB6F: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1549) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5692E60: __printf_buffer_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_done.c:33) ==3549008== by 0x569EB6F: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1549) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5692E6C: __printf_buffer_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_done.c:33) ==3549008== by 0x569EB6F: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1549) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56C636B: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:832) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56C5CF7: _IO_do_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:460) ==3549008== by 0x56C6407: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:833) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56C6E16: _IO_file_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:1236) ==3549008== by 0x56C4BB5: new_do_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:483) ==3549008== by 0x56C5D10: _IO_do_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:460) ==3549008== by 0x56C6407: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:833) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Syscall param write(count) contains uninitialised byte(s) ==3549008== at 0x5745F7D: write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/io/../sysdeps/unix/sysv/linux/write.c:26) ==3549008== by 0x56C6E3C: _IO_file_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:1241) ==3549008== by 0x56C4BB5: new_do_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:483) ==3549008== by 0x56C5D10: _IO_do_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:460) ==3549008== by 0x56C6407: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:833) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== estimate==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56C6E52: _IO_file_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:1236) ==3549008== by 0x56C4BB5: new_do_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:483) ==3549008== by 0x56C5D10: _IO_do_write@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:460) ==3549008== by 0x56C6407: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:833) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56C640A: _IO_file_sync@@GLIBC_2.2.5 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/fileops.c:833) ==3549008== by 0x56B8637: fflush (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/iofflush.c:40) ==3549008== by 0x562953: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:995) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F122: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F194: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F1B3: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F1BE: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F1C4: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== se (Intercept)==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F30: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F36: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x561088: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:209) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694517: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:483) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694BC2: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:499) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5DC: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:59) ==3549008== by 0x5694BC6: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:499) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5DF: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:60) ==3549008== by 0x5694BC6: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:499) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694BE3: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:500) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694C28: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:511) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694D01: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:623) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694D14: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:511) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694D22: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:625) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CAD8: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CB63: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:85) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CBD2: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694D56: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:631) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694D6F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:633) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694D8E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:634) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7AC: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:62) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7D1: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:73) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694DCF: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:645) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694DD5: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:645) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693574: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:95) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CAD8: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CAFC: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:52) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693574: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:95) ==3549008== by 0x5694148: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:806) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694FA3: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:999) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 0.581319==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694194: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:818) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694199: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:818) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694670: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:835) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 0.3270 t^1 ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56941EC: round_away (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/rounding-mode.h:58) ==3549008== by 0x56941EC: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:825) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== -0.137185 0.3573 t^2 -0.142631 0.1368 t^3 ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CAD8: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:36) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CB63: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:85) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CBD2: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C95D: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:83) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694CA3: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:531) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694CA9: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:531) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694CD2: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:535) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694CE7: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:540) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694CF3: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:562) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694F29: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:575) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694E88: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:579) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694E8E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:579) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569557C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:580) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5695591: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:590) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D759: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:31) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D780: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:45) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7AA: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:61) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7AC: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:62) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7BD: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:67) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7D1: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:73) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAEE: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:45) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAF3: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:47) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CBD0: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:115) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D759: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:31) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D780: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:45) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7AA: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:61) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7BD: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:67) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAEE: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:45) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAF3: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:47) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAF5: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:48) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAFA: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:51) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693F46: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:793) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569416C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:810) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56941A2: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:818) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== -0.009025==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694E24: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:542) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694E51: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:562) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5694E57: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:564) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694E5A: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:564) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 0.0952 x12 -0.560729 0.4272 x12.t^1 0.273201 0.2081 x12.t^2 0.253335 0.1928 x22 -0.345503 0.2459 Correlation matrix of linear parameters ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F0C2: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F0F0: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 1==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F100: memset (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1399) ==3549008== by 0x5692FF4: memset (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:59) ==3549008== by 0x5692FF4: __printf_buffer_pad_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_pad_1.c:39) ==3549008== by 0x569A648: __printf_buffer_pad (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../include/printf_buffer.h:164) ==3549008== by 0x569A648: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:470) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55BA84: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 2 3 4 5 6 7 1==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694522: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:655) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569452B: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:659) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5DC: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:59) ==3549008== by 0x569452F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:659) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5DF: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:60) ==3549008== by 0x569452F: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:659) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x569454C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:660) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693574: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:95) ==3549008== by 0x5694757: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x56116B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:226) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 1.000000==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F42: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:215) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x5693574: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:95) ==3549008== by 0x5693EA6: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== 6.154e-02 -7.586e-01 -7.103e-02 -6.533e-01 5.483e-03 5.341e-01 2 0.061536 1.000e+00 -6.894e-02 -9.113e-01 2.444e-03 -2.912e-01 -2.538e-03 3 -0.758611 -6.894e-02 1.000e+00 7.958e-02 5.763e-01 -6.144e-03 -7.049e-01 4 -0.071033 -9.113e-01 7.958e-02 1.000e+00==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568C593: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:34) ==3549008== by 0x56955AA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:596) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568C5B6: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:47) ==3549008== by 0x56955AA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:596) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568C5E0: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:63) ==3549008== by 0x56955AA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:596) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C5E2: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:64) ==3549008== by 0x56955AA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:596) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568C5F3: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:69) ==3549008== by 0x56955AA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:596) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568C607: __mpn_lshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/lshift.S:75) ==3549008== by 0x56955AA: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:596) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x56955C4: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:599) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694C6E: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:518) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAEE: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:45) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAF3: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:47) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAF5: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:48) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CB4C: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:77) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CBAD: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:106) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CBD0: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:115) ==3549008== by 0x568C958: __mpn_mul (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/mul.c:81) ==3549008== by 0x5694E10: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:524) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7E0: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:80) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7F9: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:87) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D840: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:108) ==3549008== by 0x5694EF0: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:613) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CB63: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:85) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693EA6: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CBD0: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:115) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693EA6: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CBD2: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:117) ==3549008== by 0x569357B: hack_digit (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:96) ==3549008== by 0x5693EA6: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:769) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== -9.733e-18==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5694E5C: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:565) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568CAF5: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:48) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CB4C: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:77) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568CBAD: __mpn_mul_1 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/mul_1.S:106) ==3549008== by 0x5694D43: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:629) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D7E0: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:80) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x568D7F9: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:87) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x568D840: __mpn_rshift (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdlib/../sysdeps/x86_64/rshift.S:108) ==3549008== by 0x5695506: __printf_fp_buffer_1.isra.0 (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:642) ==3549008== by 0x5695B82: __printf_fp_l_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/printf_fp.c:1122) ==3549008== by 0x569B115: __printf_fp_spec (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:266) ==3549008== by 0x569B115: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1408) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x560F91: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:222) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0xBF12930: init_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:464) ==3549008== -1.273e-15 5.600e-18 5 -0.653257 2.444e-03 5.763e-01 -9.733e-18 1.000e+00 -8.394e-03 -8.176e-01 6 0.005483 -2.912e-01 -6.144e-03 -1.273e-15 -8.394e-03 1.000e+00 8.716e-03 7 0.534116 -2.538e-03 -7.049e-01 5.600e-18 -8.176e-01 8.716e-03 1.000e+00 8 -0.376118 9.197e-18 -3.784e-16 -1.176e-17 -5.777e-16 5.202e-18 5.355e-16 8 1 -3.761e-01 2 9.197e-18 3 -3.784e-16 4 -1.176e-17 5 -5.777e-16 6 5.202e-18 7 5.355e-16 8 1.000e+00 (REML) Variance 0.8845209 Estimates of nonlinear parameters ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF131EB: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:426) ==3549008== by 0x49A273: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1969) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1321A: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:434) ==3549008== by 0x49A273: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1969) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF1321C: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:434) ==3549008== by 0x49A273: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1969) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF13231: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:435) ==3549008== by 0x49A273: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1969) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0xBF13283: roots_ (/data/localhost/ripley/R/packages/tests-vg/growth/src/carmasub.f:439) ==3549008== by 0x49A273: do_dotCode (/data/localhost/ripley/R/svn/R-devel/src/main/dotcode.c:1969) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x518D98: checkValues (/data/localhost/ripley/R/svn/R-devel/src/main/logic.c:427) ==3549008== by 0x518D98: do_logic3 (/data/localhost/ripley/R/svn/R-devel/src/main/logic.c:488) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== by 0x532A01: do_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:579) ==3549008== by 0x4D918E: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8170) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B2191: do_get (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:2502) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Autoregression ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x4EF5F3: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:721) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE03: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:446) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0D: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0D: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE15: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE15: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE77: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:349) ==3549008== by 0x4EEE77: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE7F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EEE7F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF262: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF262: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4EF2E8: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF2E8: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF303: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:362) ==3549008== by 0x4EF303: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEEF7: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:397) ==3549008== by 0x4EEEF7: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEF08: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:420) ==3549008== by 0x4EEF08: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF032: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:494) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF1C5: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:496) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x55BF05: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF05D: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:512) ==3549008== by 0x4EF663: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:729) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x4EF602: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:721) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE03: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:446) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0D: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0D: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE0F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE0F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE15: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:329) ==3549008== by 0x4EEE15: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE77: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:349) ==3549008== by 0x4EEE77: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEE7F: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EEE7F: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF262: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF262: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x4EF2E8: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:350) ==3549008== by 0x4EF2E8: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF303: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:362) ==3549008== by 0x4EF303: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEEF7: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:397) ==3549008== by 0x4EEEF7: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEF08: scientific (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:420) ==3549008== by 0x4EEF08: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:454) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF032: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:494) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B2191: do_get (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:2502) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF1C5: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:496) ==3549008== by 0x4EF684: Rf_formatComplex (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:730) ==3549008== by 0x55BFBF: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:266) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x55C093: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== by 0x5327AE: Rf_usemethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:513) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== estimate se==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484F1E0: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x569EB63: __vfprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1548) ==3549008== by 0x56294A: Rvprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:993) ==3549008== by 0x562A1B: Rprintf (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:906) ==3549008== by 0x55C111: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B2191: do_get (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:2502) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Roots 1==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x55C20E: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5611E3: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:359) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x56120F: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:362) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F30: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F36: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x561088: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:209) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484A92F: strcpy (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:566) ==3549008== by 0x56129F: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:372) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== 3.0924+0i==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F157: is_overlap (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:145) ==3549008== by 0x484F157: is_overlap (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:132) ==3549008== by 0x484F157: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0x557E60: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:221) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x484F177: memmove (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:1429) ==3549008== by 0x56933F7: memcpy (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/../string/bits/string_fortified.h:29) ==3549008== by 0x56933F7: __printf_buffer_write (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_write.c:39) ==3549008== by 0x569A656: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:471) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0x557E60: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:221) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x56C2E88: __printf_buffer_snprintf_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:75) ==3549008== by 0x56C2E88: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:97) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x56C2E8A: __printf_buffer_snprintf_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:76) ==3549008== by 0x56C2E8A: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:97) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5692E60: __printf_buffer_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_done.c:33) ==3549008== by 0x56C2E98: __printf_buffer_snprintf_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:87) ==3549008== by 0x56C2E98: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:97) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5692E6C: __printf_buffer_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/Xprintf_buffer_done.c:33) ==3549008== by 0x56C2E98: __printf_buffer_snprintf_done (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:87) ==3549008== by 0x56C2E98: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:97) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x561292: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:371) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== NaN+0i==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x55C21C: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5611FB: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:360) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x56121D: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:362) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5612AD: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:375) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F30: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x56131B: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:376) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F36: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x56131B: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:376) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x561088: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:209) ==3549008== by 0x56131B: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:376) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x561322: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:377) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== -0.797-4.625i 2 0.4663+0i 0.4323+0i==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F30: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x5612CA: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:376) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x560F36: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:208) ==3549008== by 0x5612CA: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:376) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x561088: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:209) ==3549008== by 0x5612CA: Rf_EncodeComplex (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:376) ==3549008== by 0x55C272: printComplexMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:271) ==3549008== by 0x55D025: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:368) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== -0.797+4.625i Moving average estimate se Roots 1 0.2541+0i 0.1529+0i -1.289+0i Correlation matrix of nonlinear parameters ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x4EEDA8: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:447) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEDAB: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:447) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EEDBA: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:448) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x4EF05D: Rf_formatReal (/data/localhost/ripley/R/svn/R-devel/src/main/format.c:512) ==3549008== by 0x55B941: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:244) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== 1 2 3 1==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x422CD6: R_IsNA (/data/localhost/ripley/R/svn/R-devel/src/main/arithmetic.c:110) ==3549008== by 0x56109B: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:210) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x5610BE: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:211) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== by 0x4E66C6: R_execClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2398) ==3549008== by 0x4E746F: applyClosure_core (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2314) ==3549008== by 0x4E7F61: Rf_applyClosure (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:2333) ==3549008== by 0x53212C: dispatchMethod (/data/localhost/ripley/R/svn/R-devel/src/main/objects.c:473) ==3549008== Uninitialised value was created by a client request ==3549008== at 0x52B550: Rf_allocVector3 (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2986) ==3549008== by 0x52CE76: Rf_allocVector (/data/localhost/ripley/R/svn/R-devel/src/include/Rinlinedfuns.h:609) ==3549008== by 0x52CE76: R_alloc (/data/localhost/ripley/R/svn/R-devel/src/main/memory.c:2332) ==3549008== by 0x47A5B8: R_decompress1 (/data/localhost/ripley/R/svn/R-devel/src/main/connections.c:6637) ==3549008== by 0x591AE4: do_lazyLoadDBfetch (/data/localhost/ripley/R/svn/R-devel/src/main/serialize.c:3335) ==3549008== by 0x4E4D94: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1262) ==3549008== by 0x4E5176: forcePromise.part.0 (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:976) ==3549008== by 0x4E4AFF: forcePromise (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:956) ==3549008== by 0x4E4AFF: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1191) ==3549008== by 0x4B56A2: Rf_findFun3 (/data/localhost/ripley/R/svn/R-devel/src/main/envir.c:1915) ==3549008== by 0x4E489D: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1217) ==3549008== by 0x51D353: Rf_ReplIteration (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:264) ==3549008== by 0x51D737: R_ReplConsole (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:317) ==3549008== by 0x51D7C4: run_Rmainloop (/data/localhost/ripley/R/svn/R-devel/src/main/main.c:1237) ==3549008== ==3549008== Conditional jump or move depends on uninitialised value(s) ==3549008== at 0x569A5DD: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:416) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== by 0x4E482A: Rf_eval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:1167) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0x557E60: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:221) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484A7A6: strlen (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:506) ==3549008== by 0x569B3B9: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:443) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0x557E60: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:221) ==3549008== ==3549008== Use of uninitialised value of size 8 ==3549008== at 0x484A7B4: strlen (/builddir/build/BUILD/valgrind-3.27.1-build/valgrind-3.27.1/memcheck/../shared/vg_replace_strmem.c:506) ==3549008== by 0x569B3B9: printf_positional (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-process-arg.c:443) ==3549008== by 0x569C341: __printf_buffer (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/vfprintf-internal.c:1040) ==3549008== by 0x56C2E79: __vsnprintf_internal (/usr/src/debug/glibc-2.43-7.fc44.x86_64/libio/vsnprintf.c:96) ==3549008== by 0x5698B85: snprintf (/usr/src/debug/glibc-2.43-7.fc44.x86_64/stdio-common/snprintf.c:31) ==3549008== by 0x5610EB: Rf_EncodeReal0 (/data/localhost/ripley/R/svn/R-devel/src/main/printutils.c:213) ==3549008== by 0x55BB43: printRealMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:247) ==3549008== by 0x55D05D: Rf_printMatrix (/data/localhost/ripley/R/svn/R-devel/src/main/printarray.c:365) ==3549008== by 0x557BDC: Rf_PrintValueRec (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:941) ==3549008== by 0x558164: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:320) ==3549008== by 0x4D92DD: bcEval_loop (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:8150) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7533) ==3549008== by 0x4E4461: bcEval (/data/localhost/ripley/R/svn/R-devel/src/main/eval.c:7518) ==3549008== Uninitialised value was created by a stack allocation ==3549008== at 0x557E60: do_printdefault (/data/localhost/ripley/R/svn/R-devel/src/main/print.c:221) ==3549008== NaN NaN NaN 2 NaN 1.0000 -0.9999 3 NaN -0.9999 1.0000 > # random intercept > carma(y, ccov=~x1+x2, interact=c(2,0), torder=3, pre=-0.4, + position=c(1,1)) Call: carma(y, ccov = ~x1 + x2, interact = c(2, 0), torder = 3, pre = -0.4, position = c(1, 1)) Number of subjects 8 Number of observations 40 Mean time 3 Transformation identity -Log likelihood 48.50814 Degrees of freedom 30 AIC 58.50814 Iterations 2 Estimates of linear parameters Formula: x1 + x2 estimate se (Intercept) 0.55226 0.35367 t^1 -0.15072 0.32722 t^2 -0.14424 0.12351 t^3 -0.00556 0.08611 x12 -0.52393 0.45547 x12.t^1 0.27715 0.20667 x12.t^2 0.23846 0.17466 x22 -0.29651 0.29227 Correlation matrix of linear parameters 1 2 3 4 5 6 7 1 1.000e+00 2.016e-16 -6.984e-01 -1.730e-16 -6.439e-01 -7.414e-17 4.939e-01 2 2.016e-16 1.000e+00 -1.779e-16 -8.947e-01 -3.636e-17 -3.158e-01 4.741e-17 3 -6.984e-01 -1.779e-16 1.000e+00 1.239e-16 5.423e-01 1.062e-16 -7.071e-01 4 -1.730e-16 -8.947e-01 1.239e-16 1.000e+00 7.687e-31 1.184e-15 -8.001e-31 5 -6.439e-01 -3.636e-17 5.423e-01 7.687e-31 1.000e+00 1.151e-16 -7.670e-01 6 -7.414e-17 -3.158e-01 1.062e-16 1.184e-15 1.151e-16 1.000e+00 -1.501e-16 7 4.939e-01 4.741e-17 -7.071e-01 -8.001e-31 -7.670e-01 -1.501e-16 1.000e+00 8 -4.132e-01 -2.968e-31 1.201e-15 2.417e-31 7.653e-16 1.275e-31 -8.493e-16 8 1 -4.132e-01 2 -2.968e-31 3 1.201e-15 4 2.417e-31 5 7.653e-16 6 1.275e-31 7 -8.493e-16 8 1.000e+00 (REML) Variance 0.8542102 Estimates of nonlinear parameters Estimated unscaled factored between subject covariance matrix i1 i2 estimate se 1 1 -8.302e-05 0.263 Estimated between subject covariance matrix 1 1 5.888e-09 > # random coefficients > carma(y, ccov=~x1+x2, interact=c(2,0), torder=3, pre=c(-0.4,0.1), + position=rbind(c(1,1),c(2,2))) Call: carma(y, ccov = ~x1 + x2, interact = c(2, 0), torder = 3, pre = c(-0.4, 0.1), position = rbind(c(1, 1), c(2, 2))) Number of subjects 8 Number of observations 40 Mean time 3 Transformation identity -Log likelihood 48.50814 Degrees of freedom 29 AIC 59.50814 Iterations 5 Estimates of linear parameters Formula: x1 + x2 estimate se (Intercept) 0.55226 0.35951 t^1 -0.15072 0.33263 t^2 -0.14424 0.12555 t^3 -0.00556 0.08753 x12 -0.52393 0.46300 x12.t^1 0.27715 0.21008 x12.t^2 0.23846 0.17755 x22 -0.29651 0.29710 Correlation matrix of linear parameters 1 2 3 4 5 6 7 1 1.000e+00 3.466e-09 -6.984e-01 5.201e-16 -6.439e-01 -5.487e-09 4.939e-01 2 3.466e-09 1.000e+00 4.651e-16 -8.947e-01 -2.691e-09 -3.158e-01 -3.786e-17 3 -6.984e-01 4.651e-16 1.000e+00 -5.573e-16 5.423e-01 5.308e-17 -7.071e-01 4 5.201e-16 -8.947e-01 -5.573e-16 1.000e+00 -6.117e-17 -5.921e-16 6.881e-17 5 -6.439e-01 -2.691e-09 5.423e-01 -6.117e-17 1.000e+00 8.522e-09 -7.670e-01 6 -5.487e-09 -3.158e-01 5.308e-17 -5.921e-16 8.522e-09 1.000e+00 -9.383e-17 7 4.939e-01 -3.786e-17 -7.071e-01 6.881e-17 -7.670e-01 -9.383e-17 1.000e+00 8 -4.132e-01 1.171e-17 3.003e-16 -1.308e-17 1.140e-16 2.359e-24 -8.957e-31 8 1 -4.132e-01 2 1.171e-17 3 3.003e-16 4 -1.308e-17 5 1.140e-16 6 2.359e-24 7 -8.957e-31 8 1.000e+00 (REML) Variance 0.8826839 Estimates of nonlinear parameters Estimated unscaled factored between subject covariance matrix i1 i2 estimate se 1 1 -2.554e-05 0.2630 2 2 3.064e-05 0.1162 Estimated between subject covariance matrix 1 2 1 5.756e-10 0.000e+00 2 0.000e+00 8.289e-10 Correlation matrix of nonlinear parameters 1 2 1 1.000e+00 -2.521e-08 2 -2.521e-08 1.000e+00 > > > > > cleanEx() > nameEx("corgram") > ### * corgram > > flush(stderr()); flush(stdout()) > > ### Name: corgram > ### Title: Calculate and Plot a Correlogram > ### Aliases: corgram > ### Keywords: hplot > > ### ** Examples > > > y <- rnorm(100) > corgram(y) > corgram(y, partial=TRUE) > > > > cleanEx() > nameEx("elliptic") > ### * elliptic > > flush(stderr()); flush(stdout()) > > ### Name: elliptic > ### Title: Nonlinear Multivariate Elliptically-contoured Repeated > ### Measurements Models with AR(1) and Two Levels of Variance Components > ### Aliases: elliptic fitted.elliptic residuals.elliptic deviance.elliptic > ### print.elliptic > ### Keywords: models > > ### ** Examples > > > # linear models > y <- matrix(rnorm(40),ncol=5) > x1 <- gl(2,4) > x2 <- gl(2,1,8) > # independence with time trend > elliptic(y, ccov=~x1, torder=2) Multivariate normal distribution Call: elliptic(y, ccov = ~x1, torder = 2) Response y Number of subjects 8 Number of observations 40 Polynomial model Times centred at 3 Transformation: identity Link function: identity -Log likelihood 51.32904 Degrees of freedom 35 AIC 56.32904 Iterations 3 Location parameters Linear part: ~x1 estimate se (Intercept) 0.16555 0.25562 t^1 -0.03105 0.09761 t^2 -0.02501 0.08250 x12 -0.04701 0.27610 Correlation matrix of linear parameters 1 2 3 4 1 1.000e+00 4.617e-18 -6.455e-01 -5.401e-01 2 4.617e-18 1.000e+00 -7.153e-18 5.984e-18 3 -6.455e-01 -7.153e-18 1.000e+00 4.855e-16 4 -5.401e-01 5.984e-18 4.855e-16 1.000e+00 Variance estimate se sigsq -0.2714 0.2236 0.7623 > # AR(1) > elliptic(y, ccov=~x1, torder=2, par=0.1) Multivariate normal distribution Call: elliptic(y, ccov = ~x1, torder = 2, par = 0.1) Response y Number of subjects 8 Number of observations 40 Polynomial model Times centred at 3 Transformation: identity Link function: identity -Log likelihood 51.28128 Degrees of freedom 34 AIC 57.28128 Iterations 5 Location parameters Linear part: ~x1 estimate se (Intercept) 0.15891 0.26400 t^1 -0.03126 0.09954 t^2 -0.02395 0.08236 x12 -0.03716 0.28770 Correlation matrix of linear parameters 1 2 3 4 1 1.000e+00 1.721e-17 -6.373e-01 -5.449e-01 2 1.721e-17 1.000e+00 -1.140e-16 -4.057e-32 3 -6.373e-01 -1.140e-16 1.000e+00 1.347e-15 4 -5.449e-01 -4.057e-32 1.347e-15 1.000e+00 Variance estimate se sigsq -0.2716 0.2241 0.7621 exponential autocorrelation estimate se rho -2.901 3.404 0.05211 Correlation matrix of nonlinear parameters 1 2 1 1.00000 0.06283 2 0.06283 1.00000 > elliptic(y, ccov=~x1, torder=3, interact=3, par=0.1) Multivariate normal distribution Call: elliptic(y, ccov = ~x1, torder = 3, interact = 3, par = 0.1) Response y Number of subjects 8 Number of observations 40 Polynomial model Times centred at 3 Transformation: identity Link function: identity -Log likelihood 48.2373 Degrees of freedom 30 AIC 58.2373 Iterations 8 Location parameters Linear part: ~x1 estimate se (Intercept) 0.40333 0.2838 t^1 -0.50216 0.3833 t^2 -0.14382 0.1080 t^3 0.09781 0.1059 x12 -0.52350 0.4014 x12.t^1 0.98004 0.5420 x12.t^2 0.23819 0.1527 x12.t^3 -0.20673 0.1497 Correlation matrix of linear parameters 1 2 3 4 5 6 7 1 1.000e+00 1.972e-16 -7.652e-01 -1.976e-16 -7.071e-01 -1.394e-16 5.411e-01 2 1.972e-16 1.000e+00 -1.659e-16 -9.421e-01 -1.394e-16 -7.071e-01 1.173e-16 3 -7.652e-01 -1.659e-16 1.000e+00 2.108e-16 5.411e-01 1.173e-16 -7.071e-01 4 -1.976e-16 -9.421e-01 2.108e-16 1.000e+00 1.397e-16 6.662e-01 -1.491e-16 5 -7.071e-01 -1.394e-16 5.411e-01 1.397e-16 1.000e+00 1.972e-16 -7.652e-01 6 -1.394e-16 -7.071e-01 1.173e-16 6.662e-01 1.972e-16 1.000e+00 -1.659e-16 7 5.411e-01 1.173e-16 -7.071e-01 -1.491e-16 -7.652e-01 -1.659e-16 1.000e+00 8 1.397e-16 6.662e-01 -1.491e-16 -7.071e-01 -1.976e-16 -9.421e-01 2.108e-16 8 1 1.397e-16 2 6.662e-01 3 -1.491e-16 4 -7.071e-01 5 -1.976e-16 6 -9.421e-01 7 2.108e-16 8 1.000e+00 Variance estimate se sigsq -0.4259 0.2237 0.6532 exponential autocorrelation estimate se rho -4.258 12.2 0.01395 Correlation matrix of nonlinear parameters 1 2 1 1.00000 0.01683 2 0.01683 1.00000 > # random intercept > elliptic(y, ccov=~x1+x2, interact=c(2,0), torder=3, pre=2) Multivariate normal distribution Call: elliptic(y, ccov = ~x1 + x2, interact = c(2, 0), torder = 3, pre = 2) Response y Number of subjects 8 Number of observations 40 Polynomial model Times centred at 3 Transformation: identity Link function: identity -Log likelihood 48.50815 Degrees of freedom 30 AIC 58.50815 Iterations 16 Location parameters Linear part: ~x1 + x2 estimate se (Intercept) 0.55226 0.31135 t^1 -0.15072 0.28806 t^2 -0.14424 0.10873 t^3 -0.00556 0.07581 x12 -0.52393 0.40097 x12.t^1 0.27715 0.18194 x12.t^2 0.23846 0.15376 x22 -0.29651 0.25730 Correlation matrix of linear parameters 1 2 3 4 5 6 7 1 1.000e+00 -1.025e-16 -6.984e-01 1.219e-16 -6.439e-01 -6.135e-18 4.939e-01 2 -1.025e-16 1.000e+00 1.818e-16 -8.947e-01 -5.129e-17 -3.158e-01 3.934e-17 3 -6.984e-01 1.818e-16 1.000e+00 -2.094e-16 5.423e-01 8.785e-18 -7.071e-01 4 1.219e-16 -8.947e-01 -2.094e-16 1.000e+00 4.589e-17 -7.840e-16 -3.520e-17 5 -6.439e-01 -5.129e-17 5.423e-01 4.589e-17 1.000e+00 1.620e-17 -7.670e-01 6 -6.135e-18 -3.158e-01 8.785e-18 -7.840e-16 1.620e-17 1.000e+00 -1.242e-17 7 4.939e-01 3.934e-17 -7.071e-01 -3.520e-17 -7.670e-01 -1.242e-17 1.000e+00 8 -4.132e-01 -2.635e-17 -4.671e-15 2.945e-17 -4.776e-15 -1.039e-17 3.373e-15 8 1 -4.132e-01 2 -2.635e-17 3 -4.671e-15 4 2.945e-17 5 -4.776e-15 6 -1.039e-17 7 3.373e-15 8 1.000e+00 Variance estimate se sigsq -0.4125 0.2236 0.662 Variance components estimate se tausq -13.55 263.7 1.304e-06 Correlation matrix of nonlinear parameters 1 2 1 1.0000000 -0.0006531 2 -0.0006531 1.0000000 > # > # nonlinear models > time <- rep(1:20,2) > dose <- c(rep(2,20),rep(5,20)) > mu <- function(p) exp(p[1]-p[3])*(dose/(exp(p[1])-exp(p[2]))* + (exp(-exp(p[2])*time)-exp(-exp(p[1])*time))) > shape <- function(p) exp(p[1]-p[2])*time*dose*exp(-exp(p[1])*time) > conc <- matrix(rnorm(40,mu(log(c(1,0.3,0.2))),sqrt(shape(log(c(0.1,0.4))))), + ncol=20,byrow=TRUE) > conc[,2:20] <- conc[,2:20]+0.5*(conc[,1:19]-matrix(mu(log(c(1,0.3,0.2))), + ncol=20,byrow=TRUE)[,1:19]) > conc <- ifelse(conc>0,conc,0.01) > # with builtin function > # independence > elliptic(conc, model="pkpd", preg=log(c(0.5,0.4,0.1)), dose=c(2,5)) Multivariate normal distribution Call: elliptic(conc, model = "pkpd", preg = log(c(0.5, 0.4, 0.1)), dose = c(2, 5)) Response conc Number of subjects 2 Number of observations 40 PKPD model Transformation: identity Link function: identity -Log likelihood 69.44532 Degrees of freedom 36 AIC 73.44532 Iterations 24 Location parameters estimate se log k_a 0.4749 0.26510 log k_e -1.4236 0.12577 log V -1.5179 0.09188 Variance estimate se sigsq 0.6344 0.2238 1.886 Correlation matrix of nonlinear parameters 1 2 3 4 1 1.000000 -0.71052 0.695506 0.003228 2 -0.710518 1.00000 -0.884222 -0.003770 3 0.695506 -0.88422 1.000000 0.004683 4 0.003228 -0.00377 0.004683 1.000000 > # AR(1) > elliptic(conc, model="pkpd", preg=log(c(0.5,0.4,0.1)), dose=c(2,5), + par=0.1) Multivariate normal distribution Call: elliptic(conc, model = "pkpd", preg = log(c(0.5, 0.4, 0.1)), dose = c(2, 5), par = 0.1) Response conc Number of subjects 2 Number of observations 40 PKPD model Transformation: identity Link function: identity -Log likelihood 67.2485 Degrees of freedom 35 AIC 72.2485 Iterations 34 Location parameters estimate se log k_a 0.3966 0.2811 log k_e -1.3931 0.1695 log V -1.5401 0.1227 Variance estimate se sigsq 0.6271 0.245 1.872 exponential autocorrelation estimate se rho -0.7542 0.6776 0.3199 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.00000 -0.74166 0.75416 -0.05912 -0.1515 2 -0.74166 1.00000 -0.88377 0.04684 0.1219 3 0.75416 -0.88377 1.00000 -0.04722 -0.1245 4 -0.05912 0.04684 -0.04722 1.00000 0.4076 5 -0.15154 0.12190 -0.12445 0.40764 1.0000 > # add variance function > elliptic(conc, model="pkpd", preg=log(c(0.5,0.4,0.1)), dose=c(2,5), + par=0.1, varfn=shape, pvar=log(c(0.5,0.2))) Multivariate normal distribution Call: elliptic(conc, model = "pkpd", preg = log(c(0.5, 0.4, 0.1)), dose = c(2, 5), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2))) Response conc Number of subjects 2 Number of observations 40 PKPD model Transformation: identity Link function: identity -Log likelihood 63.21973 Degrees of freedom 34 AIC 69.21973 Iterations 29 Location parameters estimate se log k_a 0.3751 0.3063 log k_e -1.4181 0.2137 log V -1.5335 0.1495 Variance function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.774 0.3528 p[2] 0.284 0.3654 exponential autocorrelation estimate se rho -0.3404 0.7284 0.4157 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.00000 -0.75002 0.82629 0.11290 0.01323 -0.13115 2 -0.75002 1.00000 -0.86681 -0.17685 0.07949 0.07290 3 0.82629 -0.86681 1.00000 0.16056 -0.04384 -0.10154 4 0.11290 -0.17685 0.16056 1.00000 -0.40672 -0.08714 5 0.01323 0.07949 -0.04384 -0.40672 1.00000 -0.50812 6 -0.13115 0.07290 -0.10154 -0.08714 -0.50812 1.00000 > # multivariate power exponential distribution > elliptic(conc, model="pkpd", preg=log(c(0.5,0.4,0.1)), dose=c(2,5), + par=0.1, varfn=shape, pvar=log(c(0.5,0.2)), pell=1, + distribution="power exponential") Multivariate power exponential distribution Call: elliptic(conc, model = "pkpd", preg = log(c(0.5, 0.4, 0.1)), dose = c(2, 5), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2)), pell = 1, distribution = "power exponential") Response conc Number of subjects 2 Number of observations 40 PKPD model Transformation: identity Link function: identity -Log likelihood 61.69472 Degrees of freedom 33 AIC 68.69472 Iterations 37 Location parameters estimate se log k_a 0.3843 0.2601 log k_e -1.4436 0.1853 log V -1.5200 0.1245 Dispersion function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.9137 0.2999 p[2] -0.1782 0.2736 exponential autocorrelation estimate se rho -0.6618 0.6511 0.3403 Power exponential parameter estimate se power 0.2205 0.1263 1.247 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 1.000000 -0.75424 0.85030 0.099675 -0.02782 -0.092813 0.005526 2 -0.754241 1.00000 -0.87385 -0.153987 0.16361 0.058253 -0.085315 3 0.850295 -0.87385 1.00000 0.146874 -0.12957 -0.078430 0.066752 4 0.099675 -0.15399 0.14687 1.000000 -0.10931 0.005574 -0.308018 5 -0.027816 0.16361 -0.12957 -0.109310 1.00000 -0.060626 -0.712555 6 -0.092813 0.05825 -0.07843 0.005574 -0.06063 1.000000 -0.230140 7 0.005526 -0.08531 0.06675 -0.308018 -0.71255 -0.230140 1.000000 > # multivariate Student t distribution > elliptic(conc, model="pkpd", preg=log(c(0.5,0.4,0.1)), dose=c(2,5), + par=0.1, varfn=shape, pvar=log(c(0.5,0.2)), pell=5, + distribution="Student t") Multivariate Student t distribution Call: elliptic(conc, model = "pkpd", preg = log(c(0.5, 0.4, 0.1)), dose = c(2, 5), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2)), pell = 5, distribution = "Student t") Response conc Number of subjects 2 Number of observations 40 PKPD model Transformation: identity Link function: identity -Log likelihood 63.50331 Degrees of freedom 33 AIC 70.50331 Iterations 34 Location parameters estimate se log k_a 0.3769 NA log k_e -1.4213 NA log V -1.5315 NA Dispersion function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.7854 NA p[2] 0.2396 NA exponential autocorrelation estimate se rho -0.3845 NA 0.405 Degrees of freedom parameter estimate se d.f. 3.747 NA 42.39 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # multivariate Laplace distribution > elliptic(conc, model="pkpd", preg=log(c(0.5,0.4,0.1)), dose=c(2,5), + par=0.1, varfn=shape, pvar=log(c(0.5,0.2)), + distribution="Laplace") Warning in nlm(plral, p = theta, hessian = TRUE, print.level = print.level, : Inf replaced by maximum positive value Multivariate Laplace distribution Call: elliptic(conc, model = "pkpd", preg = log(c(0.5, 0.4, 0.1)), dose = c(2, 5), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2)), distribution = "Laplace") Response conc Number of subjects 2 Number of observations 40 PKPD model Transformation: identity Link function: identity -Log likelihood 67.2339 Degrees of freedom 34 AIC 73.2339 Iterations 28 Location parameters estimate se log k_a 0.3695 0.2865 log k_e -1.4364 0.2044 log V -1.9804 0.4652 Dispersion function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.81607 0.3086 p[2] -0.08693 0.3478 exponential autocorrelation estimate se rho -0.3999 0.6538 0.4013 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.00000 -0.74443 0.2332 0.07173 -0.01253 -0.10384 2 -0.74443 1.00000 -0.1984 -0.12433 0.11563 0.06752 3 0.23320 -0.19837 1.0000 0.28897 0.64669 0.25409 4 0.07173 -0.12433 0.2890 1.00000 -0.14715 -0.02125 5 -0.01253 0.11563 0.6467 -0.14715 1.00000 -0.06973 6 -0.10384 0.06752 0.2541 -0.02125 -0.06973 1.00000 > # or equivalently with user-specified function > # independence > elliptic(conc, model=mu, preg=log(c(0.5,0.4,0.1))) Multivariate normal distribution Call: elliptic(conc, model = mu, preg = log(c(0.5, 0.4, 0.1))) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 69.44532 Degrees of freedom 36 AIC 73.44532 Iterations 24 Location function parameters exp(p[1] - p[3]) * (dose/(exp(p[1]) - exp(p[2])) * (exp(-exp(p[2]) * time) - exp(-exp(p[1]) * time))) estimate se p[1] 0.4749 0.26510 p[2] -1.4236 0.12577 p[3] -1.5179 0.09188 Variance estimate se sigsq 0.6344 0.2238 1.886 Correlation matrix of nonlinear parameters 1 2 3 4 1 1.000000 -0.71052 0.695506 0.003228 2 -0.710518 1.00000 -0.884222 -0.003770 3 0.695506 -0.88422 1.000000 0.004683 4 0.003228 -0.00377 0.004683 1.000000 > # AR(1) > elliptic(conc, model=mu, preg=log(c(0.5,0.4,0.1)), par=0.1) Multivariate normal distribution Call: elliptic(conc, model = mu, preg = log(c(0.5, 0.4, 0.1)), par = 0.1) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 67.2485 Degrees of freedom 35 AIC 72.2485 Iterations 34 Location function parameters exp(p[1] - p[3]) * (dose/(exp(p[1]) - exp(p[2])) * (exp(-exp(p[2]) * time) - exp(-exp(p[1]) * time))) estimate se p[1] 0.3966 0.2811 p[2] -1.3931 0.1695 p[3] -1.5401 0.1227 Variance estimate se sigsq 0.6271 0.245 1.872 exponential autocorrelation estimate se rho -0.7542 0.6776 0.3199 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.00000 -0.74166 0.75416 -0.05912 -0.1515 2 -0.74166 1.00000 -0.88377 0.04684 0.1219 3 0.75416 -0.88377 1.00000 -0.04722 -0.1245 4 -0.05912 0.04684 -0.04722 1.00000 0.4076 5 -0.15154 0.12190 -0.12445 0.40764 1.0000 > # add variance function > elliptic(conc, model=mu, preg=log(c(0.5,0.4,0.1)), par=0.1, + varfn=shape, pvar=log(c(0.5,0.2))) Multivariate normal distribution Call: elliptic(conc, model = mu, preg = log(c(0.5, 0.4, 0.1)), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2))) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 63.21973 Degrees of freedom 34 AIC 69.21973 Iterations 29 Location function parameters exp(p[1] - p[3]) * (dose/(exp(p[1]) - exp(p[2])) * (exp(-exp(p[2]) * time) - exp(-exp(p[1]) * time))) estimate se p[1] 0.3751 0.3063 p[2] -1.4181 0.2137 p[3] -1.5335 0.1495 Variance function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.774 0.3528 p[2] 0.284 0.3654 exponential autocorrelation estimate se rho -0.3404 0.7284 0.4157 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.00000 -0.75002 0.82629 0.11290 0.01323 -0.13115 2 -0.75002 1.00000 -0.86681 -0.17685 0.07949 0.07290 3 0.82629 -0.86681 1.00000 0.16056 -0.04384 -0.10154 4 0.11290 -0.17685 0.16056 1.00000 -0.40672 -0.08714 5 0.01323 0.07949 -0.04384 -0.40672 1.00000 -0.50812 6 -0.13115 0.07290 -0.10154 -0.08714 -0.50812 1.00000 > # multivariate power exponential distribution > elliptic(conc, model=mu, preg=log(c(0.5,0.4,0.1)), par=0.1, + varfn=shape, pvar=log(c(0.5,0.2)), pell=1, + distribution="power exponential") Multivariate power exponential distribution Call: elliptic(conc, model = mu, preg = log(c(0.5, 0.4, 0.1)), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2)), pell = 1, distribution = "power exponential") Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 61.69472 Degrees of freedom 33 AIC 68.69472 Iterations 37 Location function parameters exp(p[1] - p[3]) * (dose/(exp(p[1]) - exp(p[2])) * (exp(-exp(p[2]) * time) - exp(-exp(p[1]) * time))) estimate se p[1] 0.3843 0.2601 p[2] -1.4436 0.1853 p[3] -1.5200 0.1245 Dispersion function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.9137 0.2999 p[2] -0.1782 0.2736 exponential autocorrelation estimate se rho -0.6618 0.6511 0.3403 Power exponential parameter estimate se power 0.2205 0.1263 1.247 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 1.000000 -0.75424 0.85030 0.099675 -0.02782 -0.092813 0.005526 2 -0.754241 1.00000 -0.87385 -0.153987 0.16361 0.058253 -0.085315 3 0.850295 -0.87385 1.00000 0.146874 -0.12957 -0.078430 0.066752 4 0.099675 -0.15399 0.14687 1.000000 -0.10931 0.005574 -0.308018 5 -0.027816 0.16361 -0.12957 -0.109310 1.00000 -0.060626 -0.712555 6 -0.092813 0.05825 -0.07843 0.005574 -0.06063 1.000000 -0.230140 7 0.005526 -0.08531 0.06675 -0.308018 -0.71255 -0.230140 1.000000 > # multivariate Student t distribution > elliptic(conc, model=mu, preg=log(c(0.5,0.4,0.1)), par=0.1, + varfn=shape, pvar=log(c(0.5,0.2)), pell=5, + distribution="Student t") Multivariate Student t distribution Call: elliptic(conc, model = mu, preg = log(c(0.5, 0.4, 0.1)), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2)), pell = 5, distribution = "Student t") Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 63.50331 Degrees of freedom 33 AIC 70.50331 Iterations 34 Location function parameters exp(p[1] - p[3]) * (dose/(exp(p[1]) - exp(p[2])) * (exp(-exp(p[2]) * time) - exp(-exp(p[1]) * time))) estimate se p[1] 0.3769 NA p[2] -1.4213 NA p[3] -1.5315 NA Dispersion function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -1.7854 NA p[2] 0.2396 NA exponential autocorrelation estimate se rho -0.3845 NA 0.405 Degrees of freedom parameter estimate se d.f. 3.747 NA 42.39 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # multivariate Laplace distribution > elliptic(conc, model=mu, preg=log(c(0.5,0.4,0.1)), par=0.1, + varfn=shape, pvar=log(c(0.5,0.2)), pell=5, + distribution="Laplace") Multivariate Laplace distribution Call: elliptic(conc, model = mu, preg = log(c(0.5, 0.4, 0.1)), par = 0.1, varfn = shape, pvar = log(c(0.5, 0.2)), pell = 5, distribution = "Laplace") Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 115.0082 Degrees of freedom 33 AIC 122.0082 Iterations 3 Location function parameters exp(p[1] - p[3]) * (dose/(exp(p[1]) - exp(p[2])) * (exp(-exp(p[2]) * time) - exp(-exp(p[1]) * time))) estimate se p[1] 4.837 NA p[2] 27.237 NA p[3] 99.561 NA Dispersion function parameters exp(p[1] - p[2]) * time * dose * exp(-exp(p[1]) * time) estimate se p[1] -16.22 NA p[2] -25.54 NA exponential autocorrelation estimate se rho 116.1 NA 1 Asymmetry parameter estimate se -80.14 NA Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # or with user-specified formula > # independence > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4), + volume=log(0.1))) Multivariate normal distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1))) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 69.44532 Degrees of freedom 36 AIC 73.44532 Iterations 24 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 0.4749 0.26510 volume -1.5179 0.09188 elimination -1.4236 0.12577 Variance estimate se sigsq 0.6344 0.2238 1.886 Correlation matrix of nonlinear parameters 1 2 3 4 1 1.000000 0.695506 -0.71052 0.003228 2 0.695506 1.000000 -0.88422 0.004683 3 -0.710518 -0.884222 1.00000 -0.003770 4 0.003228 0.004683 -0.00377 1.000000 > # AR(1) > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4),volume=log(0.1)), + par=0.1) Multivariate normal distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1)), par = 0.1) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 67.2485 Degrees of freedom 35 AIC 72.2485 Iterations 34 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 0.3966 0.2811 volume -1.5401 0.1227 elimination -1.3931 0.1695 Variance estimate se sigsq 0.6271 0.245 1.872 exponential autocorrelation estimate se rho -0.7542 0.6776 0.3199 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.00000 0.75416 -0.74166 -0.05912 -0.1515 2 0.75416 1.00000 -0.88377 -0.04722 -0.1245 3 -0.74166 -0.88377 1.00000 0.04684 0.1219 4 -0.05912 -0.04722 0.04684 1.00000 0.4076 5 -0.15154 -0.12445 0.12190 0.40764 1.0000 > # add variance function > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4),volume=log(0.1)), + varfn=~exp(b1-b2)*time*dose*exp(-exp(b1)*time), + par=0.1, pvar=list(b1=log(0.5),b2=log(0.2))) Multivariate normal distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1)), varfn = ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time), par = 0.1, pvar = list(b1 = log(0.5), b2 = log(0.2))) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 63.21973 Degrees of freedom 34 AIC 69.21973 Iterations 29 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 0.3751 0.3063 volume -1.5335 0.1495 elimination -1.4181 0.2137 Variance function parameters ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time) estimate se b1 -1.774 0.3528 b2 0.284 0.3654 exponential autocorrelation estimate se rho -0.3404 0.7284 0.4157 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.00000 0.82629 -0.75002 0.11290 0.01323 -0.13115 2 0.82629 1.00000 -0.86681 0.16056 -0.04384 -0.10154 3 -0.75002 -0.86681 1.00000 -0.17685 0.07949 0.07290 4 0.11290 0.16056 -0.17685 1.00000 -0.40672 -0.08714 5 0.01323 -0.04384 0.07949 -0.40672 1.00000 -0.50812 6 -0.13115 -0.10154 0.07290 -0.08714 -0.50812 1.00000 > # variance as function of the mean > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4),volume=log(0.1)), + varfn=~d*log(mu),shfn=TRUE,par=0.1, pvar=list(d=1)) Multivariate normal distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1)), varfn = ~d * log(mu), shfn = TRUE, par = 0.1, pvar = list(d = 1)) Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 67.33071 Degrees of freedom 35 AIC 72.33071 Iterations 35 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 0.5942 0.3662 volume -1.4217 0.1196 elimination -1.5858 0.1376 Variance function parameters ~d * log(mu) estimate se d 0.4898 0.1879 exponential autocorrelation estimate se rho -0.9468 0.5704 0.2795 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.0000000 0.5354 -0.5646 0.2033 -0.0003873 2 0.5353653 1.0000 -0.8283 0.4169 0.1335574 3 -0.5645921 -0.8283 1.0000 -0.5295 -0.2462530 4 0.2033040 0.4169 -0.5295 1.0000 0.2296489 5 -0.0003873 0.1336 -0.2463 0.2296 1.0000000 > # multivariate power exponential distribution > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4),volume=log(0.1)), + varfn=~exp(b1-b2)*time*dose*exp(-exp(b1)*time), + par=0.1, pvar=list(b1=log(0.5),b2=log(0.2)), pell=1, + distribution="power exponential") Multivariate power exponential distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1)), varfn = ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time), par = 0.1, pvar = list(b1 = log(0.5), b2 = log(0.2)), pell = 1, distribution = "power exponential") Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 61.69472 Degrees of freedom 33 AIC 68.69472 Iterations 37 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 0.3843 0.2601 volume -1.5200 0.1245 elimination -1.4436 0.1853 Dispersion function parameters ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time) estimate se b1 -1.9137 0.2999 b2 -0.1782 0.2736 exponential autocorrelation estimate se rho -0.6618 0.6511 0.3403 Power exponential parameter estimate se power 0.2205 0.1263 1.247 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 1.000000 0.85030 -0.75424 0.099675 -0.02782 -0.092813 0.005526 2 0.850295 1.00000 -0.87385 0.146874 -0.12957 -0.078430 0.066752 3 -0.754241 -0.87385 1.00000 -0.153987 0.16361 0.058253 -0.085315 4 0.099675 0.14687 -0.15399 1.000000 -0.10931 0.005574 -0.308018 5 -0.027816 -0.12957 0.16361 -0.109310 1.00000 -0.060626 -0.712555 6 -0.092813 -0.07843 0.05825 0.005574 -0.06063 1.000000 -0.230140 7 0.005526 0.06675 -0.08531 -0.308018 -0.71255 -0.230140 1.000000 > # multivariate Student t distribution > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4),volume=log(0.1)), + varfn=~exp(b1-b2)*time*dose*exp(-exp(b1)*time), + par=0.1, pvar=list(b1=log(0.5),b2=log(0.2)), pell=5, + distribution="Student t") Multivariate Student t distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1)), varfn = ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time), par = 0.1, pvar = list(b1 = log(0.5), b2 = log(0.2)), pell = 5, distribution = "Student t") Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 63.50331 Degrees of freedom 33 AIC 70.50331 Iterations 34 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 0.3769 NA volume -1.5315 NA elimination -1.4213 NA Dispersion function parameters ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time) estimate se b1 -1.7854 NA b2 0.2396 NA exponential autocorrelation estimate se rho -0.3845 NA 0.405 Degrees of freedom parameter estimate se d.f. 3.747 NA 42.39 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # multivariate Laplace distribution > elliptic(conc, model=~exp(absorption-volume)* + dose/(exp(absorption)-exp(elimination))* + (exp(-exp(elimination)*time)-exp(-exp(absorption)*time)), + preg=list(absorption=log(0.5),elimination=log(0.4),volume=log(0.1)), + varfn=~exp(b1-b2)*time*dose*exp(-exp(b1)*time), + par=0.1, pvar=list(b1=log(0.5),b2=log(0.2)), pell=5, + distribution="Laplace") Multivariate Laplace distribution Call: elliptic(conc, model = ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)), preg = list(absorption = log(0.5), elimination = log(0.4), volume = log(0.1)), varfn = ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time), par = 0.1, pvar = list(b1 = log(0.5), b2 = log(0.2)), pell = 5, distribution = "Laplace") Response conc Number of subjects 2 Number of observations 40 Transformation: identity Link function: identity -Log likelihood 115.0082 Degrees of freedom 33 AIC 122.0082 Iterations 3 Location function parameters ~exp(absorption - volume) * dose/(exp(absorption) - exp(elimination)) * (exp(-exp(elimination) * time) - exp(-exp(absorption) * time)) estimate se absorption 4.837 NA volume 99.561 NA elimination 27.237 NA Dispersion function parameters ~exp(b1 - b2) * time * dose * exp(-exp(b1) * time) estimate se b1 -16.22 NA b2 -25.54 NA exponential autocorrelation estimate se rho 116.1 NA 1 Asymmetry parameter estimate se -80.14 NA Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # > # generalized logistic regression with square-root transformation > # and square link > time <- rep(seq(10,200,by=10),2) > mu <- function(p) { + yinf <- exp(p[2]) + yinf*(1+((yinf/exp(p[1]))^p[4]-1)*exp(-yinf^p[4] + *exp(p[3])*time))^(-1/p[4])} > y <- matrix(rnorm(40,sqrt(mu(c(2,1.5,0.05,-2))),0.05)^2,ncol=20,byrow=TRUE) > y[,2:20] <- y[,2:20]+0.5*(y[,1:19]-matrix(mu(c(2,1.5,0.05,-2)), + ncol=20,byrow=TRUE)[,1:19]) > y <- ifelse(y>0,y,0.01) > # with builtin function > # independence > elliptic(y, model="logistic", preg=c(2,1,0.1,-1), trans="sqrt", + link="square") Multivariate normal distribution Call: elliptic(y, model = "logistic", preg = c(2, 1, 0.1, -1), trans = "sqrt", link = "square") Warning: no convergence - error 3 Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: sqrt Link function: square -Log likelihood -10.77918 Degrees of freedom 35 AIC -5.779175 Iterations 50 Location parameters estimate se kappa1 1.830 0.0236 kappa2 1.433 0.0933 kappa3 -19.311 9.8216 kappa4 11.271 6.1683 Variance estimate se sigsq -6.321 0.3167 0.001798 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.0000000 0.0009014 -0.07314 0.07626 0.05758 2 0.0009014 1.0000000 0.82456 -0.81604 -0.57560 3 -0.0731407 0.8245644 1.00000 -0.99984 -0.70781 4 0.0762634 -0.8160435 -0.99984 1.00000 0.70798 5 0.0575810 -0.5756012 -0.70781 0.70798 1.00000 > # the same model with AR(1) > elliptic(y, model="logistic", preg=c(2,1,0.1,-1), trans="sqrt", + link="square", par=0.4) Multivariate normal distribution Call: elliptic(y, model = "logistic", preg = c(2, 1, 0.1, -1), trans = "sqrt", link = "square", par = 0.4) Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: sqrt Link function: square -Log likelihood -13.38843 Degrees of freedom 34 AIC -7.388426 Iterations 46 Location parameters estimate se kappa1 1.824 0.02450 kappa2 1.465 0.05289 kappa3 -15.075 7.90677 kappa4 8.643 4.89181 Variance estimate se sigsq -6.322 0.2681 0.001797 exponential autocorrelation estimate se rho -0.589 0.6536 0.3569 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.0000 0.1755 0.2372 -0.2363 -0.1062 -0.1169 2 0.1755 1.0000 0.7690 -0.7555 -0.2921 -0.2454 3 0.2372 0.7690 1.0000 -0.9996 -0.3571 -0.2480 4 -0.2363 -0.7555 -0.9996 1.0000 0.3562 0.2455 5 -0.1062 -0.2921 -0.3571 0.3562 1.0000 0.4955 6 -0.1169 -0.2454 -0.2480 0.2455 0.4955 1.0000 > # the same model with AR(1) and one component of variance > elliptic(y, model="logistic", preg=c(2,1,0.1,-1), + trans="sqrt", link="square", pre=1, par=0.4) Multivariate normal distribution Call: elliptic(y, model = "logistic", preg = c(2, 1, 0.1, -1), trans = "sqrt", link = "square", pre = 1, par = 0.4) Warning: no convergence - error 5 Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: sqrt Link function: square -Log likelihood -12.47845 Degrees of freedom 33 AIC -5.478455 Iterations 55 Location parameters estimate se kappa1 1.8257 NA kappa2 1.5087 NA kappa3 -0.1739 NA kappa4 -0.4710 NA Variance estimate se sigsq -6.205 NA 0.002019 Variance components estimate se tausq -170.2 NA 1.203e-74 exponential autocorrelation estimate se rho -0.2509 NA 0.4376 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # or equivalently with user-specified function > # independence > elliptic(y, model=mu, preg=c(2,1,0.1,-1), trans="sqrt", + link="square") Multivariate normal distribution Call: elliptic(y, model = mu, preg = c(2, 1, 0.1, -1), trans = "sqrt", link = "square") Response y Number of subjects 2 Number of observations 40 Transformation: sqrt Link function: square -Log likelihood -10.06526 Degrees of freedom 35 AIC -5.065262 Iterations 67 Location function parameters { yinf <- exp(p[2]) yinf * (1 + ((yinf/exp(p[1]))^p[4] - 1) * exp(-yinf^p[4] * exp(p[3]) * time))^(-1/p[4]) } estimate se p[1] 4.691 599.6195 p[2] 1.489 0.0194 p[3] -12.481 2.1221 p[4] 5.636 1.2159 Variance estimate se sigsq -6.285 0.2282 0.001864 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.000e+00 0.0005353 0.0001083 -3.316e-05 -6.279e-05 2 5.353e-04 1.0000000 0.7660357 -7.503e-01 -1.422e-01 3 1.083e-04 0.7660357 1.0000000 -9.992e-01 -1.970e-01 4 -3.316e-05 -0.7503072 -0.9991553 1.000e+00 1.973e-01 5 -6.279e-05 -0.1421605 -0.1969558 1.973e-01 1.000e+00 > # the same model with AR(1) > elliptic(y, model=mu, preg=c(2,1,0.1,-1), trans="sqrt", + link="square", par=0.4) Multivariate normal distribution Call: elliptic(y, model = mu, preg = c(2, 1, 0.1, -1), trans = "sqrt", link = "square", par = 0.4) Response y Number of subjects 2 Number of observations 40 Transformation: sqrt Link function: square -Log likelihood -13.24357 Degrees of freedom 34 AIC -7.243567 Iterations 73 Location function parameters { yinf <- exp(p[2]) yinf * (1 + ((yinf/exp(p[1]))^p[4] - 1) * exp(-yinf^p[4] * exp(p[3]) * time))^(-1/p[4]) } estimate se p[1] 4.399 380.19152 p[2] 1.487 0.02532 p[3] -12.355 2.27333 p[4] 5.557 1.28340 Variance estimate se sigsq -6.295 0.2582 0.001845 exponential autocorrelation estimate se rho -0.4873 0.615 0.3805 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.000e+00 0.001134 -0.0008446 0.001183 4.345e-05 1.115e-05 2 1.134e-03 1.000000 0.7312489 -0.712355 -1.372e-01 -1.478e-01 3 -8.446e-04 0.731249 1.0000000 -0.998721 -1.713e-01 -1.524e-01 4 1.183e-03 -0.712355 -0.9987211 1.000000 1.706e-01 1.502e-01 5 4.345e-05 -0.137211 -0.1713396 0.170610 1.000e+00 4.895e-01 6 1.115e-05 -0.147838 -0.1523592 0.150249 4.895e-01 1.000e+00 > # the same model with AR(1) and one component of variance > elliptic(y, model=mu, preg=c(2,1,0.1,-1), + trans="sqrt", link="square", pre=1, par=0.4) Multivariate normal distribution Call: elliptic(y, model = mu, preg = c(2, 1, 0.1, -1), trans = "sqrt", link = "square", pre = 1, par = 0.4) Warning: no convergence - error 5 Response y Number of subjects 2 Number of observations 40 Transformation: sqrt Link function: square -Log likelihood -12.31622 Degrees of freedom 33 AIC -5.316225 Iterations 41 Location function parameters { yinf <- exp(p[2]) yinf * (1 + ((yinf/exp(p[1]))^p[4] - 1) * exp(-yinf^p[4] * exp(p[3]) * time))^(-1/p[4]) } estimate se p[1] 1.9587 NA p[2] 1.5111 NA p[3] -0.4391 NA p[4] -1.7187 NA Variance estimate se sigsq -6.183 NA 0.002064 Variance components estimate se tausq -168 NA 1.065e-73 exponential autocorrelation estimate se rho -0.2467 NA 0.4386 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # or equivalently with user-specified formula > # independence > elliptic(y, model=~exp(yinf)*(1+((exp(yinf-y0))^b4-1)* + exp(-exp(yinf*b4+b3)*time))^(-1/b4), + preg=list(y0=2,yinf=1,b3=0.1,b4=-1), trans="sqrt", link="square") Multivariate normal distribution Call: elliptic(y, model = ~exp(yinf) * (1 + ((exp(yinf - y0))^b4 - 1) * exp(-exp(yinf * b4 + b3) * time))^(-1/b4), preg = list(y0 = 2, yinf = 1, b3 = 0.1, b4 = -1), trans = "sqrt", link = "square") Response y Number of subjects 2 Number of observations 40 Transformation: sqrt Link function: square -Log likelihood -10.06526 Degrees of freedom 35 AIC -5.065262 Iterations 67 Location function parameters ~exp(yinf) * (1 + ((exp(yinf - y0))^b4 - 1) * exp(-exp(yinf * b4 + b3) * time))^(-1/b4) estimate se yinf 1.489 0.0194 y0 4.687 594.2925 b4 5.636 1.2159 b3 -12.481 2.1221 Variance estimate se sigsq -6.285 0.2282 0.001864 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.0000000 0.0008422 -0.7503107 0.7660389 -0.1421626 2 0.0008422 1.0000000 -0.0004233 0.0004999 -0.0001428 3 -0.7503107 -0.0004233 1.0000000 -0.9991553 0.1973414 4 0.7660389 0.0004999 -0.9991553 1.0000000 -0.1969578 5 -0.1421626 -0.0001428 0.1973414 -0.1969578 1.0000000 > # the same model with AR(1) > elliptic(y, model=~exp(yinf)*(1+((exp(yinf-y0))^b4-1)* + exp(-exp(yinf*b4+b3)*time))^(-1/b4), + preg=list(y0=2,yinf=1,b3=0.1,b4=-1), trans="sqrt", + link="square", par=0.1) Multivariate normal distribution Call: elliptic(y, model = ~exp(yinf) * (1 + ((exp(yinf - y0))^b4 - 1) * exp(-exp(yinf * b4 + b3) * time))^(-1/b4), preg = list(y0 = 2, yinf = 1, b3 = 0.1, b4 = -1), trans = "sqrt", link = "square", par = 0.1) Response y Number of subjects 2 Number of observations 40 Transformation: sqrt Link function: square -Log likelihood 11.51869 Degrees of freedom 34 AIC 17.51869 Iterations 9 Location function parameters ~exp(yinf) * (1 + ((exp(yinf - y0))^b4 - 1) * exp(-exp(yinf * b4 + b3) * time))^(-1/b4) estimate se yinf 37.65063 NA y0 2.58201 NA b4 -1.43122 NA b3 0.09621 NA Variance estimate se sigsq 1.666 NA 5.292 exponential autocorrelation estimate se rho 7.926 NA 0.9996 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 NA NA NA NA NA NA 2 NA NA NA NA NA NA 3 NA NA NA NA NA NA 4 NA NA NA NA NA NA 5 NA NA NA NA NA NA 6 NA NA NA NA NA NA > # add one component of variance > elliptic(y, model=~exp(yinf)*(1+((exp(yinf-y0))^b4-1)* + exp(-exp(yinf*b4+b3)*time))^(-1/b4), + preg=list(y0=2,yinf=1,b3=0.1,b4=-1), + trans="sqrt", link="square", pre=1, par=0.1) Multivariate normal distribution Call: elliptic(y, model = ~exp(yinf) * (1 + ((exp(yinf - y0))^b4 - 1) * exp(-exp(yinf * b4 + b3) * time))^(-1/b4), preg = list(y0 = 2, yinf = 1, b3 = 0.1, b4 = -1), trans = "sqrt", link = "square", pre = 1, par = 0.1) Warning: no convergence - error 5 Response y Number of subjects 2 Number of observations 40 Transformation: sqrt Link function: square -Log likelihood -4.661313 Degrees of freedom 33 AIC 2.338687 Iterations 28 Location function parameters ~exp(yinf) * (1 + ((exp(yinf - y0))^b4 - 1) * exp(-exp(yinf * b4 + b3) * time))^(-1/b4) estimate se yinf 1.581 NA y0 1.958 NA b4 -15.439 NA b3 22.546 NA Variance estimate se sigsq -47.07 NA 3.597e-21 Variance components estimate se tausq -3.028 NA 0.04843 exponential autocorrelation estimate se rho 0.9656 NA 0.7243 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 NA NA NA NA NA NA NA 2 NA NA NA NA NA NA NA 3 NA NA NA NA NA NA NA 4 NA NA NA NA NA NA NA 5 NA NA NA NA NA NA NA 6 NA NA NA NA NA NA NA 7 NA NA NA NA NA NA NA > # > # multivariate power exponential and Student t distributions for outliers > y <- matrix(rcauchy(40,mu(c(2,1.5,0.05,-2)),0.05),ncol=20,byrow=TRUE) > y[,2:20] <- y[,2:20]+0.5*(y[,1:19]-matrix(mu(c(2,1.5,0.05,-2)), + ncol=20,byrow=TRUE)[,1:19]) > y <- ifelse(y>0,y,0.01) > # first with normal distribution > elliptic(y, model="logistic", preg=c(1,1,0.1,-1)) Warning in sqrt(diag(nlcov)) : NaNs produced Multivariate normal distribution Call: elliptic(y, model = "logistic", preg = c(1, 1, 0.1, -1)) Warning: no convergence - error 3 Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: identity Link function: identity -Log likelihood 80.47789 Degrees of freedom 35 AIC 85.47789 Iterations 46 Location parameters estimate se kappa1 1.55257 0.06211 kappa2 12.17748 NaN kappa3 0.08864 NaN kappa4 -2.33767 NaN Variance estimate se sigsq 1.186 0.2237 3.274 Correlation matrix of nonlinear parameters 1 2 3 4 5 1 1.000000 NaN NaN NaN 0.000694 2 NaN NaN NaN NaN NaN 3 NaN NaN NaN NaN NaN 4 NaN NaN NaN NaN NaN 5 0.000694 NaN NaN NaN 1.000000 > elliptic(y, model="logistic", preg=c(1,1,0.1,-1), par=0.5) Warning in sqrt(diag(nlcov)) : NaNs produced Multivariate normal distribution Call: elliptic(y, model = "logistic", preg = c(1, 1, 0.1, -1), par = 0.5) Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: identity Link function: identity -Log likelihood 78.41589 Degrees of freedom 34 AIC 84.41589 Iterations 28 Location parameters estimate se kappa1 1.80337 0.20942 kappa2 1.63915 0.08242 kappa3 0.10615 NaN kappa4 0.02022 NaN Variance estimate se sigsq 1.191 0.2455 3.292 exponential autocorrelation estimate se rho -0.7143 0.6554 0.3286 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.000000 0.01339 NaN NaN 0.002061 0.001692 2 0.013386 1.00000 NaN NaN -0.010633 -0.026570 3 NaN NaN NaN NaN NaN NaN 4 NaN NaN NaN NaN NaN NaN 5 0.002061 -0.01063 NaN NaN 1.000000 0.412588 6 0.001692 -0.02657 NaN NaN 0.412588 1.000000 > # then power exponential > elliptic(y, model="logistic", preg=c(1,1,0.1,-1), pell=1, + distribution="power exponential") Multivariate power exponential distribution Call: elliptic(y, model = "logistic", preg = c(1, 1, 0.1, -1), pell = 1, distribution = "power exponential") Warning: no convergence - error 4 Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: identity Link function: identity -Log likelihood 47.50653 Degrees of freedom 34 AIC 53.50653 Iterations 100 Location parameters estimate se kappa1 1.7594 0.02803 kappa2 1.5243 0.01139 kappa3 0.1176 18.79941 kappa4 -0.6037 11.87236 Dispersion estimate se sigsq -276.4 64.79 9.337e-121 Power exponential parameter estimate se power -3.726 0.2018 0.02409 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.00000 0.020736 -0.087011 0.091930 0.005550 0.00538 2 0.02074 1.000000 -0.002312 0.007943 0.004294 0.00426 3 -0.08701 -0.002312 1.000000 -0.999928 -0.051618 -0.05001 4 0.09193 0.007943 -0.999928 1.000000 0.051639 0.05003 5 0.00555 0.004294 -0.051618 0.051639 1.000000 0.99975 6 0.00538 0.004260 -0.050007 0.050027 0.999750 1.00000 > elliptic(y, model="logistic", preg=c(1,1,0.1,-1), par=0.5, pell=1, + distribution="power exponential") Warning in sqrt(diag(nlcov)) : NaNs produced Multivariate power exponential distribution Call: elliptic(y, model = "logistic", preg = c(1, 1, 0.1, -1), par = 0.5, pell = 1, distribution = "power exponential") Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: identity Link function: identity -Log likelihood 49.32204 Degrees of freedom 33 AIC 56.32204 Iterations 74 Location parameters estimate se kappa1 1.7591 0.02972 kappa2 1.5245 0.01208 kappa3 0.1028 19.77017 kappa4 -0.5917 12.48563 Dispersion estimate se sigsq -90.71 20.26 4.032e-40 exponential autocorrelation estimate se rho -24 NaN 3.776e-11 Power exponential parameter estimate se power -2.783 0.1843 0.06186 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 1.000000 0.019238 -0.071377 0.076318 0.007471 NaN 0.007082 2 0.019238 1.000000 -0.003925 0.009616 0.011113 NaN 0.011031 3 -0.071377 -0.003925 1.000000 -0.999926 -0.075962 NaN -0.071198 4 0.076318 0.009616 -0.999926 1.000000 0.076022 NaN 0.071258 5 0.007471 0.011113 -0.075962 0.076022 1.000000 NaN 0.998989 6 NaN NaN NaN NaN NaN NaN NaN 7 0.007082 0.011031 -0.071198 0.071258 0.998989 NaN 1.000000 > # finally Student t > elliptic(y, model="logistic", preg=c(1,1,0.1,-1), pell=1, + distribution="Student t") Multivariate Student t distribution Call: elliptic(y, model = "logistic", preg = c(1, 1, 0.1, -1), pell = 1, distribution = "Student t") Warning: no convergence - error 5 Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: identity Link function: identity -Log likelihood 46.4208 Degrees of freedom 34 AIC 52.4208 Iterations 42 Location parameters estimate se kappa1 1.753 0.02873 kappa2 1.524 0.01073 kappa3 12.399 21.69150 kappa4 -8.396 13.73865 Dispersion estimate se sigsq -2.086 1.107 0.1241 Degrees of freedom parameter estimate se d.f. -0.6143 0.9033 0.541 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 1 1.00000 -0.07279 -0.47170 0.47693 -0.04835 -0.01420 2 -0.07279 1.00000 0.21898 -0.21243 0.03214 0.01287 3 -0.47170 0.21898 1.00000 -0.99994 0.09303 0.02815 4 0.47693 -0.21243 -0.99994 1.00000 -0.09301 -0.02812 5 -0.04835 0.03214 0.09303 -0.09301 1.00000 -0.37965 6 -0.01420 0.01287 0.02815 -0.02812 -0.37965 1.00000 > elliptic(y, model="logistic", preg=c(1,1,0.1,-1), par=0.5, pell=1, + distribution="Student t") Multivariate Student t distribution Call: elliptic(y, model = "logistic", preg = c(1, 1, 0.1, -1), par = 0.5, pell = 1, distribution = "Student t") Warning: no convergence - error 5 Response y Number of subjects 2 Number of observations 40 Generalized logistic model Transformation: identity Link function: identity -Log likelihood 43.60699 Degrees of freedom 33 AIC 50.60699 Iterations 42 Location parameters estimate se kappa1 1.754 0.03075 kappa2 1.519 0.01635 kappa3 13.333 21.88066 kappa4 -9.039 13.86420 Dispersion estimate se sigsq -2.583 1.213 0.07555 exponential autocorrelation estimate se rho -0.3995 0.6306 0.4014 Degrees of freedom parameter estimate se d.f. -0.4461 0.8144 0.6401 Correlation matrix of nonlinear parameters 1 2 3 4 5 6 7 1 1.000000 -0.041354 -0.27816 0.28350 -0.009852 -0.106305 0.001302 2 -0.041354 1.000000 0.19659 -0.18695 -0.024030 -0.082082 -0.002482 3 -0.278161 0.196594 1.00000 -0.99989 0.079607 0.263112 0.015558 4 0.283497 -0.186954 -0.99989 1.00000 -0.080001 -0.265569 -0.015568 5 -0.009852 -0.024030 0.07961 -0.08000 1.000000 0.146490 -0.078960 6 -0.106305 -0.082082 0.26311 -0.26557 0.146490 1.000000 0.008142 7 0.001302 -0.002482 0.01556 -0.01557 -0.078960 0.008142 1.000000 > > > > > cleanEx() > nameEx("pergram") > ### * pergram > > flush(stderr()); flush(stdout()) > > ### Name: pergram > ### Title: Calculate and Plot a Periodogram > ### Aliases: pergram plot.pergram plot_cum plot_cum.pergram > ### Keywords: hplot > > ### ** Examples > > > y <- rnorm(100) > print(z <- pergram(y)) [,1] [,2] [1,] 0.06283185 26.410839 [2,] 0.12566371 314.288444 [3,] 0.18849556 363.861026 [4,] 0.25132741 784.786296 [5,] 0.31415927 171.678605 [6,] 0.37699112 597.029973 [7,] 0.43982297 316.501735 [8,] 0.50265482 1705.431051 [9,] 0.56548668 662.025659 [10,] 0.62831853 1050.847132 [11,] 0.69115038 590.860670 [12,] 0.75398224 891.738119 [13,] 0.81681409 2435.747390 [14,] 0.87964594 353.524915 [15,] 0.94247780 307.698887 [16,] 1.00530965 754.275879 [17,] 1.06814150 293.771259 [18,] 1.13097336 1170.803711 [19,] 1.19380521 3.885550 [20,] 1.25663706 402.441997 [21,] 1.31946891 271.755703 [22,] 1.38230077 78.470878 [23,] 1.44513262 2446.148127 [24,] 1.50796447 154.500348 [25,] 1.57079633 401.268040 [26,] 1.63362818 83.705842 [27,] 1.69646003 918.055950 [28,] 1.75929189 1357.348636 [29,] 1.82212374 246.309435 [30,] 1.88495559 363.267042 [31,] 1.94778745 1166.928534 [32,] 2.01061930 332.258255 [33,] 2.07345115 724.847863 [34,] 2.13628300 54.453476 [35,] 2.19911486 777.384182 [36,] 2.26194671 377.662243 [37,] 2.32477856 529.677853 [38,] 2.38761042 209.854078 [39,] 2.45044227 423.911294 [40,] 2.51327412 1102.588535 [41,] 2.57610598 1171.178109 [42,] 2.63893783 814.698609 [43,] 2.70176968 350.378964 [44,] 2.76460154 667.051339 [45,] 2.82743339 7.585062 [46,] 2.89026524 1228.472634 [47,] 2.95309709 1672.004370 [48,] 3.01592895 126.119551 [49,] 3.07876080 224.887558 [50,] 3.14159265 597.323067 attr(,"class") [1] "pergram" > plot(z) > plot_cum(z) > > > > > cleanEx() > nameEx("potthoff") > ### * potthoff > > flush(stderr()); flush(stdout()) > > ### Name: potthoff > ### Title: Potthoff and Roy Growth Curve Model > ### Aliases: potthoff > ### Keywords: models > > ### ** Examples > > > y <- matrix(rnorm(40),ncol=5) > x <- gl(2,4) > # full model with treatment effect > potthoff(y, ~x, torder="f", ccov=~x) Call: potthoff(y, ~x, torder = "f", ccov = ~x) Number of subjects 8 Number of observations 40 -Log likelihood 29.84243 Degrees of freedom 15 AIC 54.84243 Estimates of linear parameters t1 t2 t3 t4 t5 (Intercept) 0.07921043 0.5430043 0.5856921 -0.2657127 -0.3645469 x2 0.10448786 -0.9819901 -0.6391104 0.5646336 0.7169463 Standard errors t1 t2 t3 t4 t5 (Intercept) 0.3981889 0.4831641 0.4313494 0.3620588 0.3134911 x2 0.5631242 0.6832972 0.6100202 0.5120284 0.4433434 Correlation matrix of linear parameters 1 2 3 4 5 6 7 8 9 1 1.0000 0.1981 -0.26800 -0.57750 0.2781 -0.7071 -0.1401 0.18950 0.40835 2 0.1981 1.0000 -0.34791 0.28075 0.2035 -0.1401 -0.7071 0.24601 -0.19852 3 -0.2680 -0.3479 1.00000 -0.03698 -0.5431 0.1895 0.2460 -0.70711 0.02615 4 -0.5775 0.2808 -0.03698 1.00000 0.5064 0.4084 -0.1985 0.02615 -0.70711 5 0.2781 0.2035 -0.54308 0.50640 1.0000 -0.1967 -0.1439 0.38401 -0.35808 6 -0.7071 -0.1401 0.18950 0.40835 -0.1967 1.0000 0.1981 -0.26800 -0.57750 7 -0.1401 -0.7071 0.24601 -0.19852 -0.1439 0.1981 1.0000 -0.34791 0.28075 8 0.1895 0.2460 -0.70711 0.02615 0.3840 -0.2680 -0.3479 1.00000 -0.03698 9 0.4084 -0.1985 0.02615 -0.70711 -0.3581 -0.5775 0.2808 -0.03698 1.00000 10 -0.1967 -0.1439 0.38401 -0.35808 -0.7071 0.2781 0.2035 -0.54308 0.50640 10 1 -0.1967 2 -0.1439 3 0.3840 4 -0.3581 5 -0.7071 6 0.2781 7 0.2035 8 -0.5431 9 0.5064 10 1.0000 Estimated covariance/correlation matrix t^1 t^2 t^3 t^4 t^5 t^1 0.6342178 0.1524865 -0.18412444 -0.33302808 0.1388625 t^2 0.1981471 0.9337902 -0.29003630 0.19645307 0.1232645 t^3 -0.2679989 -0.3479113 0.74424920 -0.02309901 -0.2937481 t^4 -0.5775008 0.2807535 -0.03697644 0.52434620 0.2299078 t^5 0.2781061 0.2034502 -0.54307606 0.50639506 0.3931068 > # no time trend with treatment effect > potthoff(y, ~x, torder=0, ccov=~x) Call: potthoff(y, ~x, torder = 0, ccov = ~x) Number of subjects 8 Number of observations 40 -Log likelihood 36.24193 Degrees of freedom 23 AIC 53.24193 Estimates of linear parameters (Intercept) (Intercept) -0.07753669 x2 0.39446956 Standard errors (Intercept) (Intercept) 0.130819 x2 0.185006 Correlation matrix of linear parameters 1 2 1 1.0000 -0.7071 2 -0.7071 1.0000 Estimated covariance/correlation matrix t^1 t^2 t^3 t^4 t^5 t^1 0.6553783 0.25147780 -0.10747305 -0.3465762 0.1140058 t^2 0.2614155 1.41203227 0.05572171 0.1448754 0.0208088 t^3 -0.1306329 0.04614252 1.03276540 -0.0821655 -0.3954924 t^4 -0.5813900 0.16557212 -0.10980029 0.5422135 0.2565927 t^5 0.2135378 0.02655329 -0.59010736 0.5283878 0.4349231 > # quadratic time with treatment effect > potthoff(y, ~x, torder=2, ccov=~x) Call: potthoff(y, ~x, torder = 2, ccov = ~x) Number of subjects 8 Number of observations 40 -Log likelihood 33.14747 Degrees of freedom 19 AIC 54.14747 Estimates of linear parameters .L .Q (Intercept) 0.07426412 0.3823198 -0.5375413 x2 0.07552263 -0.7624622 0.9487808 Standard errors [,1] [,2] [,3] (Intercept) 0.1406730 0.1432665 0.4507776 x2 0.1989417 0.2026095 0.6374958 Correlation matrix of linear parameters 1 2 3 4 5 6 1 1.00000 0.2605 -0.04564 -0.70711 -0.1842 0.03227 2 0.26054 1.0000 -0.78811 -0.18423 -0.7071 0.55727 3 -0.04564 -0.7881 1.00000 0.03227 0.5573 -0.70711 4 -0.70711 -0.1842 0.03227 1.00000 0.2605 -0.04564 5 -0.18423 -0.7071 0.55727 0.26054 1.0000 -0.78811 6 0.03227 0.5573 -0.70711 -0.04564 -0.7881 1.00000 Estimated covariance/correlation matrix t^1 t^2 t^3 t^4 t^5 t^1 0.86771347 0.39928033 -0.1278224 -0.57530640 -0.0137411 t^2 0.38923869 1.21268351 -0.2450405 -0.05195336 -0.0312956 t^3 -0.15642823 -0.25366494 0.7694976 -0.08768782 -0.3359615 t^4 -0.69974999 -0.05345297 -0.1132576 0.77899788 0.3911142 t^5 -0.02095919 -0.04037855 -0.5441607 0.62961731 0.4953561 > # full model without treatment effect > potthoff(y, ~x, torder="f") Call: potthoff(y, ~x, torder = "f") Number of subjects 8 Number of observations 40 -Log likelihood 36.48727 Degrees of freedom 20 AIC 56.48727 Estimates of linear parameters t1 t2 t3 t4 t5 Mean 0.1314544 0.05200928 0.2661369 0.01660406 -0.006073722 Standard errors t1 t2 t3 t4 t5 Mean 0.2821673 0.3832209 0.3252623 0.2747838 0.2553453 Correlation matrix of linear parameters 1 2 3 4 5 1 1.0000 0.14662 -0.2735 -0.51312 0.27340 2 0.1466 1.00000 -0.1335 0.06866 -0.06738 3 -0.2735 -0.13351 1.0000 -0.15848 -0.61451 4 -0.5131 0.06866 -0.1585 1.00000 0.58988 5 0.2734 -0.06738 -0.6145 0.58988 1.00000 Estimated covariance/correlation matrix t^1 t^2 t^3 t^4 t^5 t^1 0.6369472 0.12683502 -0.2008193 -0.31827875 0.15759057 t^2 0.1466200 1.17486633 -0.1331363 0.05783693 -0.05274404 t^3 -0.2735110 -0.13351296 0.8463647 -0.11331480 -0.40830009 t^4 -0.5131211 0.06865543 -0.1584790 0.60404896 0.33111084 t^5 0.2734045 -0.06737616 -0.6145084 0.58988106 0.52160979 > # linear time without treatment effect > potthoff(y, ~x, torder=1) Call: potthoff(y, ~x, torder = 1) Number of subjects 8 Number of observations 40 -Log likelihood 36.65363 Degrees of freedom 23 AIC 53.65363 Estimates of linear parameters (Intercept) t^1 Mean 0.111126 -0.01472904 Standard errors (Intercept) t^1 Mean 0.09987311 0.08596903 Correlation matrix of linear parameters 1 2 1 1.0000 0.1944 2 0.1944 1.0000 Estimated covariance/correlation matrix t^1 t^2 t^3 t^4 t^5 t^1 0.6370685 0.12613268 -0.1991121 -0.31926841 0.15640245 t^2 0.1455425 1.17893351 -0.1430220 0.06356797 -0.04586377 t^3 -0.2673911 -0.14118889 0.8703931 -0.12724474 -0.42502333 t^4 -0.5112614 0.07482967 -0.1743260 0.61212455 0.34080577 t^5 0.2683401 -0.05784425 -0.6238643 0.59651600 0.53324881 > > > > > cleanEx() > nameEx("rmaov") > ### * rmaov > > flush(stderr()); flush(stdout()) > > ### Name: rmaov > ### Title: Split-plot ANOVA Model > ### Aliases: rmaov > ### Keywords: models > > ### ** Examples > > > # vision data for 7 individuals, with response a 7x8 matrix > # two levels of nesting: 4 levels of power for each eye > y <- matrix(rnorm(56),ncol=8) > tvc <- data.frame(eye=c(rep(1,4),rep(2,4)),power=c(1:4,1:4)) > summary(rmaov(y, tvc)) Error: block Df Sum Sq Mean Sq F value Pr(>F) Residuals 6 6.148 1.025 Error: block:eye Df Sum Sq Mean Sq F value Pr(>F) eye 1 0.100 0.0999 0.11 0.752 Residuals 6 5.461 0.9102 Error: block:power Df Sum Sq Mean Sq F value Pr(>F) power 3 1.091 0.3637 0.488 0.695 Residuals 18 13.428 0.7460 Error: block:eye:power Df Sum Sq Mean Sq F value Pr(>F) eye:power 3 2.928 0.976 1.448 0.262 Residuals 18 12.132 0.674 > > > > > ### *