Changes of Revision 35
[-] | Changed | icinga-mod_gearman.changes |
1
2 ------------------------------------------------------------------- 3 +Sat Feb 18 21:10:00 UTC 2012 - cs@linux-administrator.com 4 + 5 +- update to release 1.2.2 6 + 7 +------------------------------------------------------------------- 8 Mon Feb 6 20:38:05 UTC 2012 - cs@linux-administrator.com 9 10 - update to release 1.2.0 11 |
||
[-] | Changed | icinga-mod_gearman.spec ^ |
10 1
2 %define monitor icinga 3 %define pkgname mod_gearman 4 Name: %{monitor}-%{pkgname} 5 -Version: 1.2.0 6 +Version: 1.2.2 7 Release: 1 8 Group: Application/System 9 License: GPLv3 10 |
||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/Changes ^ |
@@ -1,5 +1,10 @@ This file documents the revision history for mod_gearman. +1.2.2 Tue Feb 7 18:06:02 CET 2012 + - orphaned hosts/services generate a fake result with useful error message + - bypass eventhandler from hosts/services in local host/servicegroups + - fixed NAGIOS_PLUGIN env in epn + 1.2.0 Sun Jan 8 18:42:56 CET 2012 - added embedded perl support (see README for details) - added uniq key option for check_gearman (kgovande) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/Makefile.am ^ |
@@ -301,12 +301,12 @@ git clean -xfd version: - newversion=$$(dialog --stdout --inputbox "New Version:" 0 0 "$(VERSION)") ; \ - if [ -n "$$newversion" ] && [ "$$newversion" != "$(VERSION)" ]; then \ - sed -ri "s/$(VERSION)/$$newversion/" include/common.h configure.ac docs/QUICKSTART support/mod_gearman.spec; \ - fi ; - sed -i Changes -e "s/$(VERSION)/$$newversion $(shell date)\n - ...\n\n$(VERSION)/" - $(MAKE) docs + if [ -z "$$NEWVERSION" ]; then NEWVERSION=$$(dialog --stdout --inputbox "New Version:" 0 0 "$(VERSION)"); fi; \ + if [ -n "$$NEWVERSION" ] && [ "$$NEWVERSION" != "$(VERSION)" ]; then \ + sed -ri "s/$(VERSION)/$$NEWVERSION/" include/common.h configure.ac docs/QUICKSTART support/mod_gearman.spec; \ + sed -i Changes -e "s/$(VERSION)/$$NEWVERSION $(shell date)\n - ...\n\n$(VERSION)/"; \ + $(MAKE) docs; \ + fi; # order does matter for perl libs/includes (at least on centos) mod_gearman_worker$(EXEEXT): $(mod_gearman_worker_OBJECTS) $(perl_objects) $(mod_gearman_worker_DEPENDENCIES) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/Makefile.in ^ |
@@ -1319,12 +1319,12 @@ git clean -xfd version: - newversion=$$(dialog --stdout --inputbox "New Version:" 0 0 "$(VERSION)") ; \ - if [ -n "$$newversion" ] && [ "$$newversion" != "$(VERSION)" ]; then \ - sed -ri "s/$(VERSION)/$$newversion/" include/common.h configure.ac docs/QUICKSTART support/mod_gearman.spec; \ - fi ; - sed -i Changes -e "s/$(VERSION)/$$newversion $(shell date)\n - ...\n\n$(VERSION)/" - $(MAKE) docs + if [ -z "$$NEWVERSION" ]; then NEWVERSION=$$(dialog --stdout --inputbox "New Version:" 0 0 "$(VERSION)"); fi; \ + if [ -n "$$NEWVERSION" ] && [ "$$NEWVERSION" != "$(VERSION)" ]; then \ + sed -ri "s/$(VERSION)/$$NEWVERSION/" include/common.h configure.ac docs/QUICKSTART support/mod_gearman.spec; \ + sed -i Changes -e "s/$(VERSION)/$$NEWVERSION $(shell date)\n - ...\n\n$(VERSION)/"; \ + $(MAKE) docs; \ + fi; # order does matter for perl libs/includes (at least on centos) mod_gearman_worker$(EXEEXT): $(mod_gearman_worker_OBJECTS) $(perl_objects) $(mod_gearman_worker_DEPENDENCIES) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/README ^ |
@@ -38,12 +38,13 @@ Download -------- - * Latest stable http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.0.tar.gz[version 1.2.0], released January 08 2012 + * Latest stable http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.2.tar.gz[version 1.2.2], released February 07 2012 * Mod Gearman is available for download at: http://labs.consol.de/nagios/mod-gearman * Source is available on GitHub: http://github.com/sni/mod_gearman * Older versions are available in the <<_archive,download archive>>. * Mod-Gearman is also included in http://omdistro.org[OMD]. * Debian users should use the http://packages.debian.org/source/wheezy/mod-gearman[official packages] + * SLES/RHEL users should use the http://mod-gearman.org/download/[prebuild packages] @@ -588,6 +589,29 @@ ==== +orphan_host_checks:: +The Mod-Gearman NEB module will submit a fake result for orphaned host +checks with a message saying there is no worker running for this +queue. Use this option to get better reporting results, otherwise your +hosts will keep their last state as long as there is no worker +running. +Default is yes. ++ +==== + orphan_host_checks=yes +==== + + +orphan_service_checks:: +Same like 'orphan_host_checks' but for services. +Default is yes. ++ +==== + orphan_service_checks=yes +==== + + + Worker Options ~~~~~~~~~~~~~~ @@ -631,7 +655,7 @@ spawn-rate:: -Defines the rate of spawed worker per second as long as there are jobs +Defines the rate of spawned worker per second as long as there are jobs waiting. Default: 1 + ==== @@ -661,7 +685,7 @@ fork_on_exec:: Use this option to disable an extra fork for each plugin execution. Disabling this option will reduce the load on the worker host, but may -cause trouble with unclean plugins. Default: yes +cause trouble with unclean plugins. Default: no + ==== fork_on_exec=no @@ -721,7 +745,7 @@ use_perl_cache:: Cache compiled perl scripts. This makes the worker process a little -bit bigger but makes exection of perl scripts even faster. +bit bigger but makes execution of perl scripts even faster. When turned off, Mod-Gearman will still use the embedded perl interpreter, but will not cache the compiled script. + @@ -859,7 +883,7 @@ Embedded Perl ------------- -Since 1.1.2 Mod-Gearman has builtin embedded Perl support which means +Since 1.2.0 Mod-Gearman has builtin embedded Perl support which means generally a big performance boost when you have lots of perl plugins. To enable embedded Perl you need to run configure with @@ -877,6 +901,13 @@ 'use_embedded_perl_implicitly=off' so all scripts without the explicit tag are run without embedded Perl. +The default configuration of Mod-Gearman enables embedded Perl, but +only uses it for Perl scripts which explicitly set '# nagios: +epn'. +This is a very safe way of using embedded Perl but you probably miss +some plugins which do not set the header and still would run with EPN. +You may want to use the 'mini_epn' from your nagios installation to +verify if a plugin works with EPN or not. + General EPN documentation is valid for Mod-Gearman as well: * http://nagios.sourceforge.net/docs/3_0/embeddedperl.html[Embedded Perl] @@ -1014,6 +1045,7 @@ Archive ------- +* http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.2.tar.gz[version 1.2.2 - February 07 2012] * http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.0.tar.gz[version 1.2.0 - January 08 2012] * http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.1.1.tar.gz[version 1.1.1 - November 10 2011] * http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.1.0.tar.gz[version 1.1.0 - October 12 2011] | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/common/epn_utils.c ^ |
@@ -135,6 +135,7 @@ gm_log( GM_LOG_ERROR, "dup2 error\n"); _exit(STATE_UNKNOWN); } + close(pipe_stdout[0]); close(pipe_stderr[1]); current_child_pid = getpid(); @@ -168,6 +169,10 @@ FREETMPS; LEAVE; + /* free structures */ + mod_gm_free_opt(mod_gm_opt); + deinit_embedded_perl(); + _exit(retval); } @@ -235,8 +240,8 @@ buf[sizeof(buf) - 1] = '\0'; - /* skip lines not containing nagios 'epn' directives */ - if(strstr(buf, "# nagios:")) { + /* skip lines not containing 'epn' directives */ + if(strstr(buf, "# nagios:") || strstr(buf, "# icinga:")) { char *p; p = strstr(buf + 8, "epn"); if (!p) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/common/gearman.c ^ |
@@ -269,7 +269,7 @@ if(free_uniq) free(uniq); - gm_log( GM_LOG_TRACE, "add_job_to_queue() finished sucessfully: %d %d\n", ret1, ret2 ); + gm_log( GM_LOG_TRACE, "add_job_to_queue() finished successfully: %d %d\n", ret1, ret2 ); return GM_OK; } | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/common/utils.c ^ |
@@ -250,6 +250,8 @@ opt->spawn_rate = GM_DEFAULT_SPAWN_RATE; opt->identifier = NULL; opt->show_error_output = GM_ENABLED; + opt->orphan_host_checks = GM_ENABLED; + opt->orphan_service_checks = GM_ENABLED; opt->workaround_rc_25 = GM_DISABLED; @@ -419,6 +421,18 @@ return(GM_OK); } + /* orphan_host_checks */ + else if ( !strcmp( key, "orphan_host_checks" ) ) { + opt->orphan_host_checks = parse_yes_or_no(value, GM_ENABLED); + return(GM_OK); + } + + /* orphan_service_checks */ + else if ( !strcmp( key, "orphan_service_checks" ) ) { + opt->orphan_service_checks = parse_yes_or_no(value, GM_ENABLED); + return(GM_OK); + } + /* enable_embedded_perl */ else if ( !strcmp( key, "enable_embedded_perl" ) ) { #ifdef EMBEDDEDPERL @@ -1714,4 +1728,3 @@ return result; } - | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/configure ^ |
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for mod_gearman 1.2.0. +# Generated by GNU Autoconf 2.65 for mod_gearman 1.2.2. # # Report bugs to <sven.nierlein@consol.de>. # @@ -552,8 +552,8 @@ # Identity of this package. PACKAGE_NAME='mod_gearman' PACKAGE_TARNAME='mod_gearman' -PACKAGE_VERSION='1.2.0' -PACKAGE_STRING='mod_gearman 1.2.0' +PACKAGE_VERSION='1.2.2' +PACKAGE_STRING='mod_gearman 1.2.2' PACKAGE_BUGREPORT='sven.nierlein@consol.de' PACKAGE_URL='' @@ -1254,7 +1254,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures mod_gearman 1.2.0 to adapt to many kinds of systems. +\`configure' configures mod_gearman 1.2.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1320,7 +1320,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of mod_gearman 1.2.0:";; + short | recursive ) echo "Configuration of mod_gearman 1.2.2:";; esac cat <<\_ACEOF @@ -1419,7 +1419,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -mod_gearman configure 1.2.0 +mod_gearman configure 1.2.2 generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. @@ -1882,7 +1882,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by mod_gearman $as_me 1.2.0, which was +It was created by mod_gearman $as_me 1.2.2, which was generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2690,7 +2690,7 @@ # Define the identity of the package. PACKAGE='mod_gearman' - VERSION='1.2.0' + VERSION='1.2.2' cat >>confdefs.h <<_ACEOF @@ -6032,7 +6032,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by mod_gearman $as_me 1.2.0, which was +This file was extended by mod_gearman $as_me 1.2.2, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6098,7 +6098,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -mod_gearman config.status 1.2.0 +mod_gearman config.status 1.2.2 configured by $0, generated by GNU Autoconf 2.65, with options \\"\$ac_cs_config\\" | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/configure.ac ^ |
@@ -4,7 +4,7 @@ ############################################## # autoconf really does not work with 2.59 or older AC_PREREQ([2.60]) -AC_INIT([mod_gearman], [1.2.0], [sven.nierlein@consol.de]) +AC_INIT([mod_gearman], [1.2.2], [sven.nierlein@consol.de]) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) AC_CONFIG_SRCDIR([neb_module/mod_gearman.c],[worker/worker.c],[tools/send_gearman.c],[tools/check_gearman.c],[tools/gearman_top.c]) AC_CONFIG_HEADER([config.h]) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/docs/QUICKSTART ^ |
@@ -2,8 +2,10 @@ ============================ This quickstart guide was written for Debian Lenny (5.0) but probably works with -different Linux systems too. As there are currently no packages for Gearman -and Mod-Gearman, we have to install them from source. +different Linux systems too. + +NOTE: This guide installs Mod-Gearman from source. Use packages whenever +possible and only do a source install when there are no packages. This guide assumes you have a basic nagios system running. @@ -52,9 +54,9 @@ -------------------------------------- #> cd /tmp -#> wget "http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.0.tar.gz" -#> tar zxf mod_gearman-1.2.0.tar.gz -#> cd mod_gearman-1.2.0 +#> wget "http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.2.tar.gz" +#> tar zxf mod_gearman-1.2.2.tar.gz +#> cd mod_gearman-1.2.2 #> ./configure --prefix=/opt --with-gearman=/opt --with-user=nagios --with-init-dir=/etc/init.d #> make #> make install @@ -118,7 +120,7 @@ -------------------------------------- #> grep mod_gearman /var/log/nagios3/nagios.log -[1295003042] mod_gearman: Version 1.2.0 +[1295003042] mod_gearman: Version 1.2.2 [1295003042] Event broker module '/opt/lib/mod_gearman/mod_gearman.o' initialized successfully. -------------------------------------- @@ -152,7 +154,7 @@ -------------------------------------- #> /opt/bin/check_gearman -H localhost -q worker_`hostname` -t 10 -s check -check_gearman OK - debian64 has 1 worker and is working on 0 jobs. Version: 1.2.0|worker=1 jobs=2c +check_gearman OK - debian64 has 1 worker and is working on 0 jobs. Version: 1.2.2|worker=1 jobs=2c -------------------------------------- The interesting number is the last one, '2c' in our case, which means there | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/docs/QUICKSTART.html ^ |
@@ -561,8 +561,16 @@ <div id="preamble"> <div class="sectionbody"> <div class="paragraph"><p>This quickstart guide was written for Debian Lenny (5.0) but probably works with -different Linux systems too. As there are currently no packages for Gearman -and Mod-Gearman, we have to install them from source.</p></div> +different Linux systems too.</p></div> +<div class="admonitionblock"> +<table><tr> +<td class="icon"> +<div class="title">Note</div> +</td> +<td class="content">This guide installs Mod-Gearman from source. Use packages whenever +possible and only do a source install when there are no packages.</td> +</tr></table> +</div> <div class="paragraph"><p>This guide assumes you have a basic nagios system running.</p></div> <div class="paragraph"><p>All commands have to be executed as root.</p></div> </div> @@ -606,9 +614,9 @@ <div class="listingblock"> <div class="content"> <pre><tt>#> cd /tmp -#> wget "http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.0.tar.gz" -#> tar zxf mod_gearman-1.2.0.tar.gz -#> cd mod_gearman-1.2.0 +#> wget "http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.2.tar.gz" +#> tar zxf mod_gearman-1.2.2.tar.gz +#> cd mod_gearman-1.2.2 #> ./configure --prefix=/opt --with-gearman=/opt --with-user=nagios --with-init-dir=/etc/init.d #> make #> make install @@ -666,7 +674,7 @@ <div class="listingblock"> <div class="content"> <pre><tt>#> grep mod_gearman /var/log/nagios3/nagios.log -[1295003042] mod_gearman: Version 1.2.0 +[1295003042] mod_gearman: Version 1.2.2 [1295003042] Event broker module '/opt/lib/mod_gearman/mod_gearman.o' initialized successfully.</tt></pre> </div></div> </div> @@ -693,7 +701,7 @@ <div class="listingblock"> <div class="content"> <pre><tt>#> /opt/bin/check_gearman -H localhost -q worker_`hostname` -t 10 -s check -check_gearman OK - debian64 has 1 worker and is working on 0 jobs. Version: 1.2.0|worker=1 jobs=2c</tt></pre> +check_gearman OK - debian64 has 1 worker and is working on 0 jobs. Version: 1.2.2|worker=1 jobs=2c</tt></pre> </div></div> <div class="paragraph"><p>The interesting number is the last one, <em>2c</em> in our case, which means there have been already 2 jobs executed by this worker.</p></div> @@ -733,7 +741,7 @@ <div id="footnotes"><hr /></div> <div id="footer"> <div id="footer-text"> -Last updated 2012-01-08 18:41:50 CEST +Last updated 2012-02-07 18:12:42 CEST </div> </div> </body> | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/docs/README.html ^ |
@@ -640,7 +640,7 @@ <div class="ulist"><ul> <li> <p> -Latest stable <a href="http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.0.tar.gz">version 1.2.0</a>, released January 08 2012 +Latest stable <a href="http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.2.tar.gz">version 1.2.2</a>, released February 07 2012 </p> </li> <li> @@ -668,6 +668,11 @@ Debian users should use the <a href="http://packages.debian.org/source/wheezy/mod-gearman">official packages</a> </p> </li> +<li> +<p> +SLES/RHEL users should use the <a href="http://mod-gearman.org/download/">prebuild packages</a> +</p> +</li> </ul></div> </div> <h2 id="_support">Support</h2> @@ -1407,6 +1412,42 @@ </div></div> </div></div> </dd> +<dt class="hdlist1"> +orphan_host_checks +</dt> +<dd> +<p> +The Mod-Gearman NEB module will submit a fake result for orphaned host +checks with a message saying there is no worker running for this +queue. Use this option to get better reporting results, otherwise your +hosts will keep their last state as long as there is no worker +running. +Default is yes. +</p> +<div class="exampleblock"> +<div class="exampleblock-content"> +<div class="literalblock"> +<div class="content"> +<pre><tt>orphan_host_checks=yes</tt></pre> +</div></div> +</div></div> +</dd> +<dt class="hdlist1"> +orphan_service_checks +</dt> +<dd> +<p> +Same like <em>orphan_host_checks</em> but for services. +Default is yes. +</p> +<div class="exampleblock"> +<div class="exampleblock-content"> +<div class="literalblock"> +<div class="content"> +<pre><tt>orphan_service_checks=yes</tt></pre> +</div></div> +</div></div> +</dd> </dl></div> <h3 id="_worker_options">Worker Options</h3><div style="clear:left"></div> <div class="paragraph"><p>Additional options for worker:</p></div> @@ -1481,7 +1522,7 @@ </dt> <dd> <p> -Defines the rate of spawed worker per second as long as there are jobs +Defines the rate of spawned worker per second as long as there are jobs waiting. Default: 1 </p> <div class="exampleblock"> @@ -1533,7 +1574,7 @@ <p> Use this option to disable an extra fork for each plugin execution. Disabling this option will reduce the load on the worker host, but may -cause trouble with unclean plugins. Default: yes +cause trouble with unclean plugins. Default: no </p> <div class="exampleblock"> <div class="exampleblock-content"> @@ -1636,7 +1677,7 @@ <dd> <p> Cache compiled perl scripts. This makes the worker process a little -bit bigger but makes exection of perl scripts even faster. +bit bigger but makes execution of perl scripts even faster. When turned off, Mod-Gearman will still use the embedded perl interpreter, but will not cache the compiled script. </p> @@ -1818,7 +1859,7 @@ </div> <h2 id="_embedded_perl">Embedded Perl</h2> <div class="sectionbody"> -<div class="paragraph"><p>Since 1.1.2 Mod-Gearman has builtin embedded Perl support which means +<div class="paragraph"><p>Since 1.2.0 Mod-Gearman has builtin embedded Perl support which means generally a big performance boost when you have lots of perl plugins.</p></div> <div class="paragraph"><p>To enable embedded Perl you need to run configure with --enable-embedded-perl</p></div> @@ -1839,6 +1880,12 @@ tag are run without embedded Perl.</td> </tr></table> </div> +<div class="paragraph"><p>The default configuration of Mod-Gearman enables embedded Perl, but +only uses it for Perl scripts which explicitly set <em># nagios: +epn</em>. +This is a very safe way of using embedded Perl but you probably miss +some plugins which do not set the header and still would run with EPN. +You may want to use the <em>mini_epn</em> from your nagios installation to +verify if a plugin works with EPN or not.</p></div> <div class="paragraph"><p>General EPN documentation is valid for Mod-Gearman as well:</p></div> <div class="ulist"><ul> <li> @@ -2022,6 +2069,11 @@ <div class="ulist"><ul> <li> <p> +<a href="http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.2.tar.gz">version 1.2.2 - February 07 2012</a> +</p> +</li> +<li> +<p> <a href="http://labs.consol.de/wp-content/uploads/2010/09/mod_gearman-1.2.0.tar.gz">version 1.2.0 - January 08 2012</a> </p> </li> @@ -2126,7 +2178,7 @@ <div id="footnotes"><hr /></div> <div id="footer"> <div id="footer-text"> -Last updated 2012-01-08 23:37:05 CEST +Last updated 2012-02-07 18:10:36 CEST </div> </div> </body> | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/etc/mod_gearman_neb.conf.in ^ |
@@ -124,7 +124,17 @@ # handling performance data. For example: pnp4nagios # Performance data is just written to the gearman # queue. -# Default no +# Default: no perfdata=no +# The Mod-Gearman NEB module will submit a fake result for orphaned host +# checks with a message saying there is no worker running for this +# queue. Use this option to get better reporting results, otherwise your +# hosts will keep their last state as long as there is no worker +# running. +# Default: yes +orphan_host_checks=yes +# Same like 'orphan_host_checks' but for services. +# Default: yes +orphan_service_checks=yes | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/etc/mod_gearman_worker.conf.in ^ |
@@ -125,7 +125,7 @@ # after high load times max-jobs=1000 -# defined the rate of spawed worker per second as long +# defines the rate of spawned worker per second as long # as there are jobs waiting spawn-rate=1 @@ -149,7 +149,7 @@ use_embedded_perl_implicitly=off # Cache compiled perl scripts. This makes the worker process a little -# bit bigger but makes exection of perl scripts even faster. +# bit bigger but makes execution of perl scripts even faster. # When turned off, Mod-Gearman will still use the embedded perl # interpreter, but will not cache the compiled script. use_perl_cache=on | ||
[+] | Added | mod_gearman-1.2.2.tar.bz2/extras/gearmand-init ^ |
@@ -0,0 +1,168 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: gearmand +# Required-Start: $local_fs +# Required-Stop: $local_fs +# Should-Start: +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Start/Stop the gearman daemon +### END INIT INFO + +NAME=gearmand +DAEMON="/opt/sbin/gearmand" +OPTIONS="-d -j 0" +PORT=4730 +LISTEN=0.0.0.0 +PIDFILE=/usr/local/var/mod_gearman/gearmand.pid +LOGFILE=/usr/local/var/mod_gearman/gearmand.log +USER=nagios +GRACEFUL_SHUTDOWN_TIME=30 +LIBEVENTMINVERSION=1.4 +for f in $( which netcat nc 2>/dev/null ) ; do + if [ -x "$f" ]; then + NC=$f + fi +done + +# check libevent version +# io threads are only supported in lib event >= 1.4 +LIBEVENTVERSION=`/sbin/ldconfig -p 2>&1 | grep libevent- | tail -n 1 | sed -e 's/.*libevent\-\(.*\)\.so.*/\1/g' -e 's/[^0-9\.]//g'` +if [ ! -z "$LIBEVENTVERSION" ]; then + [ `echo "$LIBEVENTVERSION $LIBEVENTMINVERSION" | awk '{if ($1 >= $2) print 1}'` ] && OPTIONS="$OPTIONS -t 10" +fi + +# create state dir +mkdir -p $(dirname $LOGFILE) +chown $USER: $(dirname $LOGFILE) + +get_status() { + pid=$( cat $PIDFILE 2>/dev/null ) + if [ -n "$pid" ]; then + if ps -p $pid > /dev/null 2>&1 ; then + echo "$NAME is running with pid $pid" + return 0; + fi + fi + echo "$NAME is not running" + return 1; +} + +kill_gearmand() { + printf '%s' "Killing $NAME..." + pid=$( cat $PIDFILE 2>/dev/null ) + if [ -z "$pid" ]; then + echo ". Not running." + else + # do a kill if still now down + ps -p $pid > /dev/null 2>&1 && kill $pid + for x in 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5; do + printf "." + ps -p $pid > /dev/null 2>&1 && sleep 1; + done + if ! ps -p $pid > /dev/null 2>&1 ; then + echo "OK" + exit 0; + else + echo "failed" + exit 1; + fi + fi +} + +WHO=$( whoami ) +case "$1" in + start) + printf '%s' "Starting $NAME..." + if get_status > /dev/null ; then + echo "failed" + echo "$NAME already running" + exit 0; + fi + if [ ! -x "$DAEMON" ]; then + echo "Cannot start. Make sure $DAEMON exists and is executable" + exit 1; + fi + + CMD="$DAEMON -p $PORT -P $PIDFILE $OPTIONS --log-file=$LOGFILE -v -v --listen=$LISTEN" + if [ "$WHO" = "root" ]; then + # try to exec commands as user + su - $USER -c /bin/true + if [ $? -ne 0 ]; then + echo "cannot exec commands as user $USER, make sure user has a valid shell" + exit 1; + fi + su - $USER -c "$CMD > $LOGFILE 2>&1" + else + $CMD > $LOGFILE 2>&1 + fi + if [ $? -eq 0 ]; then + echo "OK" + exit 0; + else + echo "failed" + exit 1; + fi + ;; + stop) + printf '%s' "Stopping $NAME..." + pid=$( cat $PIDFILE 2>/dev/null ) + if [ -z "$pid" ]; then + echo ". Not running." + else + # do a graceful shutdown + if [ ! -z $NC ]; then + printf '%s' " gracefully " + echo "shutdown graceful" | $NC -w 1 -i 1 $LISTEN $PORT > /dev/null + x=$GRACEFUL_SHUTDOWN_TIME + while [ $x -gt 0 ]; do + printf "." + ps -p $pid > /dev/null 2>&1 && sleep 1 || x=0; + x=$( expr $x - 1 ) + done + + if ! ps -p $pid > /dev/null 2>&1 ; then + echo "OK" + exit 0; + else + echo "failed" + fi + fi + + # kill if still running + ps -p $pid > /dev/null 2>&1 && kill_gearmand; + fi + ;; + kill) + kill_gearmand; + ;; + reload|force-reload) + printf '%s' "Reloading $NAME configuration files..." + pid=$( cat $PIDFILE 2>/dev/null ) + if [ -n "$pid" ]; then + kill -HUP "$pid" + echo "OK" + exit 0; + else + echo "" + echo "$NAME is not running" + exit 1; + fi + ;; + status) + get_status; + exit $?; + ;; + restart) + $0 stop && sleep 1 && $0 start + exit $? + ;; + *) + echo "Usage: $NAME {start|stop|kill|status|restart}" + exit 1 + ;; +esac + +exit 0 | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/extras/patches/0001-nagios_3.2.1_eventhandler_broker.patch ^ |
(renamed to extras/patches/0001-nagios_3.2.1_eventhandler_broker.patch) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/extras/patches/0001-nagios_3.2.1_eventhandler_broker.patch ^ |
(renamed to extras/patches/0001-nagios_3.2.1_eventhandler_broker.patch) | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/extras/shared.conf ^ |
@@ -108,13 +108,13 @@ # sets a list of hostgroups which will not be executed # by gearman. They are just passed through. -# Default is none +# Default: none localhostgroups= # sets a list of servicegroups which will not be executed # by gearman. They are just passed through. -# Default is none +# Default: none localservicegroups= @@ -132,7 +132,7 @@ # handling performance data. For example: pnp4nagios # Performance data is just written to the gearman # queue. -# Default no +# Default: no perfdata=no # perfdata mode overwrite helps preventing the perdata queue getting to big @@ -140,6 +140,17 @@ # 2 = append perfdata_mode=1 +# The Mod-Gearman NEB module will submit a fake result for orphaned host +# checks with a message saying there is no worker running for this +# queue. Use this option to get better reporting results, otherwise your +# hosts will keep their last state as long as there is no worker +# running. +# Default: yes +orphan_host_checks=yes + +# Same like 'orphan_host_checks' but for services. +# Default: yes +orphan_service_checks=yes ############################################################################### # @@ -183,8 +194,8 @@ # Use this option to disable an extra fork for each plugin execution. Disabling # this option will reduce the load on the worker host but can lead to problems with -# unclean plugin. Default: yes -fork_on_exec=yes +# unclean plugin. Default: no +fork_on_exec=no # Use this option to show stderr output of plugins too. # Default: yes | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/extras/standalone_worker.conf ^ |
@@ -119,8 +119,8 @@ # Use this option to disable an extra fork for each plugin execution. Disabling # this option will reduce the load on the worker host but can lead to problems with -# unclean plugin. Default: yes -fork_on_exec=yes +# unclean plugin. Default: no +fork_on_exec=no # Use this option to show stderr output of plugins too. # Default: yes | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/include/common.h ^ |
@@ -53,7 +53,7 @@ #define MOD_GM_COMMON_H /* constants */ -#define GM_VERSION "1.2.0" +#define GM_VERSION "1.2.2" #define GM_ENABLED 1 #define GM_DISABLED 0 #define GM_BUFFERSIZE 98304 @@ -193,6 +193,8 @@ int do_hostchecks; /**< flag whether mod-gearman will process hostchecks at all */ mod_gm_exp_t * exports[GM_NEBTYPESSIZE]; /**< list of exporter queues */ int exports_count; /**< number of export queues */ + int orphan_host_checks; /**< generate fake result for orphaned host checks */ + int orphan_service_checks; /**< generate fake result for orphaned service checks */ /* worker */ char * identifier; /**< identifier for this worker */ char * pidfile; /**< path to a pidfile */ | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/include/worker.h ^ |
@@ -124,7 +124,7 @@ void setup_child_communicator(void); /** - * finish and clean all childs and shared memory segments, then exit. + * finish and clean all children and shared memory segments, then exit. * * @param[in] sig - signal which caused the exit * @@ -164,7 +164,7 @@ * * @return nothing */ -void stop_childs(int mode); +void stop_children(int mode); /** * main loop to maintain the child population @@ -174,7 +174,7 @@ void monitor_loop(void); /** - * check and start new worker childs if level is too low + * check and start new worker children if level is too low * * @return nothing */ | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/neb_module/mod_gearman.c ^ |
@@ -389,6 +389,8 @@ /* handle eventhandler events */ static int handle_eventhandler( int event_type, void *data ) { nebstruct_event_handler_data * ds; + host * hst = NULL; + service * svc = NULL; gm_log( GM_LOG_DEBUG, "got eventhandler event\n" ); gm_log( GM_LOG_TRACE, "handle_eventhandler(%i, data)\n", event_type ); @@ -400,6 +402,35 @@ gm_log( GM_LOG_TRACE, "got eventhandler event: %s\n", ds->command_line ); + /* service event handler? */ + if(ds->service_description != NULL) { + if((svc=ds->object_ptr)==NULL) { + gm_log( GM_LOG_ERROR, "Eventhandler handler received NULL service object pointer.\n" ); + return NEB_OK; + } + if((hst=svc->host_ptr)==NULL) { + gm_log( GM_LOG_ERROR, "Service handler received NULL host object pointer.\n" ); + return NEB_OK; + } + } + else { + if((hst=ds->object_ptr)==NULL) { + gm_log( GM_LOG_ERROR, "Host handler received NULL host object pointer.\n" ); + return NEB_OK; + } + } + + /* local eventhandler? */ + set_target_queue( hst, svc ); + if(!strcmp( target_queue, "" )) { + if(svc != NULL) { + gm_log( GM_LOG_DEBUG, "passing by local service eventhandler: %s - %s\n", svc->host_name, svc->description ); + } else { + gm_log( GM_LOG_DEBUG, "passing by local host eventhandler: %s\n", hst->name ); + } + return NEB_OK; + } + temp_buffer[0]='\x0'; snprintf( temp_buffer,GM_BUFFERSIZE-1,"type=eventhandler\ncommand_line=%s\n\n\n",ds->command_line ); @@ -430,6 +461,8 @@ char *raw_command=NULL; char *processed_command=NULL; host * hst; + check_result * chk_result; + int check_options; gm_log( GM_LOG_TRACE, "handle_host_check(%i)\n", event_type ); @@ -475,11 +508,39 @@ * taken from checks.c: */ /* clear check options - we don't want old check options retained */ + check_options = hst->check_options; hst->check_options = CHECK_OPTION_NONE; /* adjust host check attempt */ adjust_host_check_attempt_3x(hst,TRUE); + temp_buffer[0]='\x0'; + + /* orphanded check? */ + if(mod_gm_opt->orphan_host_checks == GM_ENABLED && check_options & CHECK_OPTION_ORPHAN_CHECK) { + gm_log( GM_LOG_DEBUG, "host check for %s orphanded\n", hst->name ); + if ( ( chk_result = ( check_result * )malloc( sizeof *chk_result ) ) == 0 ) + return NEBERROR_CALLBACKCANCEL; + snprintf( temp_buffer,GM_BUFFERSIZE-1,"(host check orphaned, is the mod-gearman worker on queue '%s' running?)\n", target_queue); + init_check_result(chk_result); + chk_result->host_name = strdup( hst->name ); + chk_result->scheduled_check = TRUE; + chk_result->reschedule_check = TRUE; + chk_result->output_file = 0; + chk_result->output_file_fd = -1; + chk_result->output = strdup(temp_buffer); + chk_result->return_code = 2; + chk_result->check_options = CHECK_OPTION_NONE; + chk_result->object_check_type = HOST_CHECK; + chk_result->check_type = HOST_CHECK_ACTIVE; + chk_result->start_time.tv_sec = (unsigned long)time(NULL); + chk_result->finish_time.tv_sec = (unsigned long)time(NULL); + chk_result->latency = 0; + mod_gm_add_result_to_list( chk_result ); + chk_result = NULL; + return NEBERROR_CALLBACKCANCEL; + } + /* grab the host macro variables */ clear_volatile_macros(); grab_host_macros(hst); @@ -516,7 +577,6 @@ gm_log( GM_LOG_TRACE, "cmd_line: %s\n", processed_command ); - temp_buffer[0]='\x0'; snprintf( temp_buffer,GM_BUFFERSIZE-1,"type=host\nresult_queue=%s\nhost_name=%s\nstart_time=%i.0\ntimeout=%d\ncommand_line=%s\n\n\n", mod_gm_opt->result_queue, hst->name, @@ -568,6 +628,7 @@ char *processed_command=NULL; nebstruct_service_check_data * svcdata; int prio = GM_JOB_PRIO_LOW; + check_result * chk_result; gm_log( GM_LOG_TRACE, "handle_svc_check(%i, data)\n", event_type ); svcdata = ( nebstruct_service_check_data * )data; @@ -604,6 +665,36 @@ return NEB_OK; } + gm_log( GM_LOG_DEBUG, "received job for queue %s: %s - %s\n", target_queue, svcdata->host_name, svcdata->service_description ); + + temp_buffer[0]='\x0'; + + /* orphanded check? */ + if(mod_gm_opt->orphan_service_checks == GM_ENABLED && svc->check_options & CHECK_OPTION_ORPHAN_CHECK) { + gm_log( GM_LOG_DEBUG, "service check for %s - %s orphanded\n", svc->host_name, svc->description ); + if ( ( chk_result = ( check_result * )malloc( sizeof *chk_result ) ) == 0 ) + return NEBERROR_CALLBACKCANCEL; + snprintf( temp_buffer,GM_BUFFERSIZE-1,"(service check orphaned, is the mod-gearman worker on queue '%s' running?)\n", target_queue); + init_check_result(chk_result); + chk_result->host_name = strdup( svc->host_name ); + chk_result->service_description = strdup( svc->description ); + chk_result->scheduled_check = TRUE; + chk_result->reschedule_check = TRUE; + chk_result->output_file = 0; + chk_result->output_file_fd = -1; + chk_result->output = strdup(temp_buffer); + chk_result->return_code = 2; + chk_result->check_options = CHECK_OPTION_NONE; + chk_result->object_check_type = SERVICE_CHECK; + chk_result->check_type = SERVICE_CHECK_ACTIVE; + chk_result->start_time.tv_sec = (unsigned long)time(NULL); + chk_result->finish_time.tv_sec = (unsigned long)time(NULL); + chk_result->latency = 0; + mod_gm_add_result_to_list( chk_result ); + chk_result = NULL; + return NEBERROR_CALLBACKCANCEL; + } + /* as we have to intercept service checks so early * (we cannot cancel checks otherwise) * we have to do some service check logic here @@ -648,10 +739,8 @@ /* set the execution flag */ svc->is_executing=TRUE; - gm_log( GM_LOG_DEBUG, "received job for queue %s: %s - %s\n", target_queue, svcdata->host_name, svcdata->service_description ); gm_log( GM_LOG_TRACE, "cmd_line: %s\n", processed_command ); - temp_buffer[0]='\x0'; snprintf( temp_buffer,GM_BUFFERSIZE-1,"type=service\nresult_queue=%s\nhost_name=%s\nservice_description=%s\nstart_time=%i.0\ntimeout=%d\ncommand_line=%s\n\n\n", mod_gm_opt->result_queue, svcdata->host_name, | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/support/mod_gearman.spec ^ |
@@ -1,5 +1,5 @@ Name: mod_gearman -Version: 1.2.0 +Version: 1.2.2 Release: 1%{?dist} License: GNU Public License version 2 Packager: Sven Nierlein <sven.nierlein@consol.de> @@ -91,6 +91,9 @@ %docdir %{_defaultdocdir} %changelog +* Thu Jan 19 2012 Sven Nierlein <sven@consol.de> +- enabled embedded Perl + * Mon Jun 06 2011 Michael Friedrich <michael.friedrich@univie.ac.at> - reworked spec file to fit fhs compliance in /etc/mod_gearman - moved extras/*conf from localestatedir to sysconfdir | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/t/07-epn.c ^ |
@@ -35,17 +35,17 @@ /* create options structure and set debug level */ mod_gm_opt = malloc(sizeof(mod_gm_opt_t)); set_default_options(mod_gm_opt); - //mod_gm_opt->debug_level=4; - char p1[150]; - snprintf(p1, 150, "--p1_file=worker/mod_gearman_p1.pl"); - parse_args_line(mod_gm_opt, p1, 0); - char ep[150]; - snprintf(ep, 150, "--enable_embedded_perl=on"); - parse_args_line(mod_gm_opt, ep, 0); - char epi[150]; - snprintf(epi, 150, "--use_embedded_perl_implicitly=on"); - parse_args_line(mod_gm_opt, epi, 0); - //dumpconfig(mod_gm_opt, GM_WORKER_MODE); + char cmds[150]; + strcpy(cmds, "--p1_file=worker/mod_gearman_p1.pl"); + parse_args_line(mod_gm_opt, cmds, 0); + strcpy(cmds, "--enable_embedded_perl=on"); + parse_args_line(mod_gm_opt, cmds, 0); + strcpy(cmds, "--use_embedded_perl_implicitly=on"); + parse_args_line(mod_gm_opt, cmds, 0); + /* + * mod_gm_opt->debug_level=4; + * dumpconfig(mod_gm_opt, GM_WORKER_MODE); + */ ok(p1_file != NULL, "p1_file: %s", p1_file); /***************************************** | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/t/test_all.pl ^ |
@@ -24,7 +24,7 @@ my $testlog = '/tmp/mod_gearman_test.log'; my $suppressions = '/tmp/suppressions.log'; `>$suppressions`; -my @tests = split/\s+/, `grep ^check_PROGRAMS Makefile.am | awk -F = '{print \$2}'`; +my @tests = $ARGV[0] || split/\s+/, `grep ^check_PROGRAMS Makefile.am | awk -F = '{print \$2}'`; for my $test (@tests) { next if $test =~ m/^\s*$/; `make $test 2>/dev/null`; | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/t/valgrind_suppress.cfg ^ |
@@ -3,10 +3,41 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV_type + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV_type + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV_type + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -49,6 +80,40 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpv + fun:perl_construct + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc fun:Perl_sv_grow fun:Perl_sv_setpvn fun:Perl_newSVpvn @@ -63,18 +128,18 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:realloc + fun:Perl_safesysrealloc fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:Perl_sv_vcatpvfn + fun:Perl_sv_vcatpvf + fun:Perl_sv_catpvf + fun:Perl_vnumify + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list } { <insert_a_suppression_name_here> @@ -97,6 +162,18 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_savepv + fun:Perl_new_collate + fun:Perl_init_i18nl10n + fun:perl_construct + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc fun:Perl_savepvn fun:Perl_sv_magicext fun:Perl_sv_magic @@ -133,6 +210,22 @@ fun:Perl_sv_add_backref fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchsv fun:Perl_newATTRSUB fun:Perl_utilize @@ -159,18 +252,66 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc + fun:malloc + fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_do_vecset - fun:Perl_magic_setvec - fun:Perl_mg_set - fun:Perl_pp_sassign + fun:Perl_sv_setsv_flags + fun:Perl_pp_complement + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pp_regcomp + fun:Perl_runops_standard +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push + fun:Perl_av_create_and_push + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse } { <insert_a_suppression_name_here> @@ -209,40 +350,40 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_pad_add_anon + fun:Perl_ck_anoncode + fun:Perl_newSVOP + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_regexec_flags - fun:Perl_pp_match + fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_sv_copypv - fun:Perl_pp_stringify + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_regexec_flags + fun:Perl_pp_match fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newOP - fun:Perl_scalarseq - fun:Perl_block_end + fun:Perl_scope + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -257,8 +398,7 @@ Memcheck:Leak fun:calloc fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_prepend_elem + fun:Perl_newNULLLIST fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -268,13 +408,13 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_get_sv + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -285,9 +425,7 @@ Memcheck:Leak fun:calloc fun:Perl_newUNOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newASSIGNOP + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -295,14 +433,15 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP - fun:Perl_fold_constants fun:Perl_newUNOP + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -311,15 +450,35 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newGVREF + fun:Perl_newCONDOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_get_sv + obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl fun:main @@ -328,12 +487,88 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newASSIGNOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version + fun:Perl_pp_require + fun:Perl_runops_standard +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newPVOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_ck_subr + fun:Perl_newUNOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newPADOP + fun:Perl_newGVOP fun:Perl_ck_fun - fun:Perl_ck_spair - fun:Perl_newOP + fun:Perl_ck_open + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -344,10 +579,10 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP + fun:Perl_newPADOP + fun:Perl_newGVOP fun:Perl_ck_fun - fun:Perl_ck_spair - fun:Perl_newOP + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -388,52 +623,75 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_safesysrealloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime + fun:Perl_yyparse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv fun:Perl_newXS - fun:Perl_boot_core_xsutils + fun:Perl_boot_core_PerlIO obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP - fun:Perl_ck_subr - fun:Perl_newUNOP - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_init_argv_symbols + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_ck_eval - fun:Perl_newUNOP - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -445,95 +703,86 @@ fun:calloc fun:Perl_safesyscalloc fun:Perl_mro_meta_init - fun:Perl_gv_handler - fun:Perl_sv_clear - fun:Perl_sv_free2 - fun:Perl_sv_free - fun:Perl_gp_free - fun:Perl_sv_clear - fun:Perl_sv_free2 - fun:Perl_sv_free + fun:Perl_mro_method_changed_in + fun:Perl_newXS + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in fun:Perl_newXS fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_newANONHASH + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_method_named + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_pp_hslice + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newATTRSUB + fun:Perl_newSUB + fun:Perl_sv_2cv + fun:Perl_pp_rv2cv fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_newBINOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_hv_common - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_gv_fetchmeth - fun:Perl_Gv_AMupdate + fun:Perl_mro_meta_init fun:Perl_gv_handler fun:Perl_sv_clear fun:Perl_sv_free2 fun:Perl_sv_free fun:Perl_gp_free + fun:Perl_sv_clear + fun:Perl_sv_free2 + fun:Perl_sv_free + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> @@ -542,14 +791,14 @@ fun:Perl_safesysmalloc fun:Perl_sv_grow fun:Perl_sv_setpvn - fun:Perl_newSVpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex + fun:Perl_sv_copypv + fun:Perl_pp_stringify + fun:Perl_runops_standard + fun:Perl_fold_constants + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require } { <insert_a_suppression_name_here> @@ -561,11 +810,11 @@ fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchpv - fun:Perl_get_sv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp + fun:perl_parse } { <insert_a_suppression_name_here> @@ -575,93 +824,93 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_hv_common fun:Perl_hv_common_key_len - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:xs_init - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchmeth fun:Perl_gv_fetchmeth_autoload fun:Perl_Gv_AMupdate - fun:Perl_gv_handler - fun:Perl_sv_clear - fun:Perl_sv_free2 - fun:Perl_sv_free - fun:Perl_gp_free + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version + fun:Perl_upg_version } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newCVREF - fun:Perl_yylex - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_pp_helem fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc + fun:Perl_hv_common + fun:Perl_pp_aassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL + fun:Perl_boot_core_PerlIO obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchpv fun:Perl_newXS - fun:xs_init + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> @@ -669,23 +918,26 @@ fun:malloc fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_newIO - fun:Perl_gv_IOadd - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newCONDOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_newSVsv + fun:Perl_save_item + fun:Perl_start_subparse fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -695,11 +947,42 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:Perl_pp_caller + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_hv_common + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_mro_get_linear_isa + fun:Perl_gv_fetchmeth + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_hv_common + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_mro_get_linear_isa + fun:Perl_gv_fetchmeth + fun:Perl_gv_fetchmeth + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version + fun:Perl_upg_version +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_hv_common + fun:Perl_pp_hslice fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -707,16 +990,17 @@ fun:Perl_newATTRSUB fun:Perl_utilize fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:realloc + fun:Perl_safesysrealloc fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_vcatpvfn + fun:Perl_sv_vcatpvf + fun:Perl_sv_catpvf obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 @@ -727,136 +1011,110 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_hv_common obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_mro_get_linear_isa + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set + fun:Perl_pp_aassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_sv_upgrade - fun:Perl_newSV_type - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_mro_get_linear_isa + fun:Perl_gv_fetchmeth + fun:Perl_Gv_AMupdate + fun:Perl_gv_handler + fun:Perl_sv_clear + fun:Perl_sv_free2 + fun:Perl_sv_free + fun:Perl_gp_free } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP - fun:Perl_newANONATTRSUB + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newBINOP - fun:Perl_newWHILEOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_tidy + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpv + fun:Perl_pad_add_name obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn + fun:Perl_pad_findmy fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newANONATTRSUB - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newHVREF - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -865,55 +1123,57 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newPMOP + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepv - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:Perl_safesysrealloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newSLICEOP + fun:Perl_newOP + fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -922,32 +1182,30 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc + fun:Perl_newOP fun:Perl_newLISTOP fun:Perl_force_list - fun:Perl_newUNOP - fun:Perl_newLOOPEX + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_new - fun:Perl_start_subparse + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -958,10 +1216,8 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_ck_shift fun:Perl_newOP + fun:Perl_scope fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -971,134 +1227,138 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newWHILEOP - fun:Perl_newFOROP + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newBINOP - fun:Perl_newWHILEOP - fun:Perl_newFOROP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_pp_helem - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_get_sv obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newGVREF - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_get_sv obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pp_regcomp fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push - fun:Perl_newPMOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_newBINOP - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_reentrant_init - fun:perl_construct + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -1108,19 +1368,43 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSTATEOP - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_pp_sassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newATTRSUB + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_sv_2cv + fun:Perl_pp_rv2cv + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -1130,57 +1414,60 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version - fun:Perl_pp_require + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_fbm_compile - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchmeth + fun:Perl_gv_fetchmeth_autoload + fun:Perl_Gv_AMupdate + fun:Perl_gv_handler + fun:Perl_sv_clear + fun:Perl_sv_free2 + fun:Perl_sv_free + fun:Perl_gp_free } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newCONDOP - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_share_hek + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_PerlIO obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newSVOP - fun:Perl_scan_num + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -1192,9 +1479,9 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_ck_shift - fun:Perl_newOP + fun:Perl_newSVOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1207,50 +1494,64 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:perl_parse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newASSIGNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> @@ -1261,30 +1562,36 @@ fun:Perl_av_store fun:Perl_av_fetch fun:Perl_pad_alloc - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep - fun:Perl_newATTRSUB + fun:Perl_ck_rvconst + fun:Perl_newUNOP + fun:Perl_newAVREF + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_init_stacks - fun:perl_construct + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_convert + fun:Perl_newPADOP + fun:Perl_newGVOP + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1298,8 +1605,8 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPMOP - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newUNOP + fun:Perl_newCVREF fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -1314,8 +1621,10 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_convert + fun:Perl_newUNOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newWHILEOP + fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1323,36 +1632,46 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:Perl_newUNOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_mg_copy - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_newUNOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newCONDOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newASSIGNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -1363,71 +1682,80 @@ Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newCVREF - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_newLOGOP + fun:Perl_newASSIGNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSTATEOP + fun:Perl_newUNOP + fun:Perl_newCONDOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newSVREF + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newCONDOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_add_name + fun:Perl_allocmy + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_get_arena + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_add_name + fun:Perl_allocmy + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - fun:perl_construct + fun:perl_parse fun:init_embedded_perl fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -1437,28 +1765,44 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSV - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSVpvn_flags + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex + fun:perl_parse + fun:init_embedded_perl +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_catpvn_flags + fun:Perl_ck_require + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1469,25 +1813,56 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSV - fun:Perl_scan_num - fun:Perl_yylex + fun:calloc + fun:Perl_newCONDOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_newIO + fun:Perl_gv_IOadd + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_yylex + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newBINOP + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1500,9 +1875,8 @@ } { <insert_a_suppression_name_here> - Memcheck:Cond - fun:Perl_re_compile - fun:Perl_pregcomp + Memcheck:Leak + fun:calloc fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -1513,60 +1887,41 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_newANONLIST + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:perl_construct + fun:perl_parse fun:init_embedded_perl fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newASSIGNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_newSVsv - fun:Perl_save_item - fun:Perl_package + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newCONDOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -1578,127 +1933,125 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:xs_init + fun:Perl_gv_stashpvn + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push - fun:Perl_op_clear - fun:Perl_op_free - fun:Perl_op_free - fun:Perl_op_free - fun:Perl_op_free - fun:Perl_op_free - fun:Perl_leave_scope + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_gv_fetchmeth - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push + fun:Perl_sv_grow + fun:Perl_sv_setpv + fun:Perl_pp_caller + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmeth - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push - fun:Perl_av_create_and_push + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_complement - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_PerlIO + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_pad_add_anon - fun:Perl_ck_anoncode - fun:Perl_newSVOP - fun:Perl_newANONATTRSUB - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_pp_require fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:PerlIO_push - fun:PerlIOUnix_open - fun:PerlIOBuf_open - fun:PerlIO_openn - fun:PerlIO_fdopen - fun:PerlIO_stdstreams - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open + fun:Perl_hv_common + fun:Perl_pp_helem + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 } { @@ -1706,32 +2059,32 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:xs_init + fun:Perl_av_extend + fun:Perl_av_store obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:realloc + fun:Perl_safesysrealloc fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_pp_concat + fun:Perl_sv_catpvn_flags + fun:Perl_sv_catsv_flags + fun:Perl_pp_regcomp fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> @@ -1742,18 +2095,18 @@ fun:Perl_hv_common fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_ck_fun + fun:Perl_ck_open + fun:Perl_convert + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newAVREF + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1763,14 +2116,14 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newWHILEOP + fun:Perl_newLISTOP + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1779,48 +2132,49 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPVOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_newIO + fun:Perl_gv_IOadd obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic + fun:Perl_newGP + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_utilize fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_do_kv - fun:Perl_runops_standard - fun:perl_run + fun:malloc + fun:Perl_savesharedpv + fun:Perl_newSTATEOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse fun:init_embedded_perl fun:main } @@ -1829,116 +2183,139 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_ck_rvconst + fun:Perl_newUNOP + fun:Perl_newCVREF + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex + fun:calloc + fun:Perl_newOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_sv_2cv - fun:Perl_pp_rv2cv - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_PerlIO + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newBINOP - fun:Perl_yyparse + fun:Perl_safesyscalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_newIO + fun:Perl_gv_IOadd + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_prepend_elem + fun:Perl_safesyscalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newATTRSUB - fun:Perl_newSUB - fun:Perl_sv_2cv - fun:Perl_pp_rv2cv - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newUNOP + fun:Perl_newAVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -1948,67 +2325,113 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_ck_rvconst + fun:Perl_newUNOP + fun:Perl_newCVREF + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL + fun:Perl_gv_fetchsv + fun:Perl_softref2xv + fun:Perl_pp_rv2av + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_peep + fun:Perl_newATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_new_stackinfo - fun:Perl_init_stacks - fun:perl_construct + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newBINOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_scan_version - fun:Perl_upg_version + fun:Perl_newLISTOP + fun:Perl_prepend_elem + fun:Perl_append_list + fun:Perl_newWHILEOP + fun:Perl_newFOROP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newASSIGNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_newCONDOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_pp_helem + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_pp_vec fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -2016,23 +2439,48 @@ fun:Perl_newATTRSUB fun:Perl_utilize fun:Perl_yyparse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP + fun:Perl_newLOOPEX + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:xs_init + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_tidy + fun:Perl_newATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -2041,14 +2489,14 @@ fun:Perl_safesysmalloc fun:Perl_sv_grow fun:Perl_sv_setpvn - fun:Perl_newSVpvn + fun:Perl_newSVpvn_flags + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv } { <insert_a_suppression_name_here> @@ -2058,13 +2506,13 @@ fun:Perl_newGP fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:Perl_gv_fetchsv + fun:Perl_ck_rvconst + fun:Perl_newUNOP + fun:Perl_newCVREF + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require } { <insert_a_suppression_name_here> @@ -2073,55 +2521,81 @@ fun:Perl_safesyscalloc fun:Perl_newGP fun:Perl_gv_init - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:xs_init + fun:malloc + fun:Perl_savesharedpv + fun:Perl_newSTATEOP + fun:Perl_newFOROP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL + fun:Perl_savepv + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newBINOP + fun:Perl_newASSIGNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP + fun:Perl_newLOOPEX + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newASSIGNOP + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newAVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -2133,14 +2607,48 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_softref2xv + fun:Perl_pp_rv2av + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> @@ -2156,16 +2664,14 @@ fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_new + fun:realloc + fun:Perl_newFOROP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard @@ -2173,14 +2679,16 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSTATEOP - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newSLICEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2193,26 +2701,27 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_catpvn_flags - fun:Perl_ck_require - fun:Perl_newUNOP + fun:calloc + fun:Perl_newBINOP + fun:Perl_newSLICEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newCONDOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP + fun:Perl_newLOOPEX fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2220,14 +2729,14 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP + fun:Perl_newSVOP + fun:Perl_fold_constants + fun:Perl_newBINOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -2237,61 +2746,59 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_yylex + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_fbm_compile + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_gv_fetchsv + fun:Perl_softref2xv + fun:Perl_pp_rv2av + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn + fun:calloc + fun:Perl_newOP fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:PerlIO_list_push - fun:PerlIO_default_layers - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -2303,103 +2810,69 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_sv_mortalcopy - fun:Perl_pp_return - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_sv_setpv + fun:Perl_pad_add_name obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_pad_findmy + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_ck_fun - fun:Perl_ck_open - fun:Perl_convert + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_newSV - fun:Perl_yylex - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_hv_common + fun:Perl_pp_helem + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_newUNOP + fun:Perl_newGVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_newIO - fun:Perl_gv_IOadd - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv fun:Perl_newATTRSUB fun:Perl_utilize - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn + fun:Perl_newPMOP fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -2411,7 +2884,9 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2420,56 +2895,38 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_newIO - fun:Perl_gv_IOadd + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_iterinit - fun:Perl_do_kv - fun:Perl_pp_padhv + fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -2480,12 +2937,12 @@ fun:Perl_av_store fun:Perl_av_fetch fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_newBINOP - fun:Perl_newASSIGNOP + fun:Perl_peep + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> @@ -2493,38 +2950,22 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc fun:Perl_ck_rvconst fun:Perl_newUNOP - fun:Perl_newCVREF + fun:Perl_newSVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list fun:Perl_newUNOP - fun:Perl_newANONATTRSUB - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP + fun:Perl_newSVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2539,40 +2980,37 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newSLICEOP + fun:Perl_newUNOP + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP - fun:Perl_newLOOPEX - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_catpvn_flags + fun:Perl_pp_concat fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc - fun:Perl_savesharedpv - fun:Perl_newSTATEOP + fun:Perl_safesysmalloc + fun:Perl_savepv + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -2582,34 +3020,34 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv + fun:realloc + fun:Perl_safesysrealloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_iterinit + fun:Perl_do_kv + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv } { <insert_a_suppression_name_here> @@ -2617,8 +3055,8 @@ fun:calloc fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_newFOROP + fun:Perl_force_list + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2630,14 +3068,14 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_peep - fun:Perl_newPROG + fun:calloc + fun:Perl_safesyscalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2647,25 +3085,25 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_ck_shift - fun:Perl_newOP + fun:Perl_newSVOP + fun:Perl_scan_num + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -2677,84 +3115,82 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:Perl_pad_add_name + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_mg_copy + fun:Perl_hv_common + fun:Perl_hv_common_key_len obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pad_findmy - fun:Perl_yylex - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newSVOP - fun:Perl_fold_constants - fun:Perl_newBINOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_mg_copy + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_catpvn_flags - fun:Perl_pp_concat - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_iterinit - fun:Perl_do_kv - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:calloc + fun:Perl_newSVOP + fun:Perl_yylex fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_sassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_share_hek + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newCONDOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2764,54 +3200,23 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpv - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags + fun:calloc + fun:Perl_newPMOP fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -2832,25 +3237,26 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newBINOP - fun:Perl_newASSIGNOP + fun:Perl_newPMOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2859,28 +3265,15 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_new_stackinfo - fun:Perl_init_stacks - fun:perl_construct - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newBINOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_pp_aassign + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -2893,17 +3286,14 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPMOP - fun:Perl_yylex + fun:Perl_newLISTOP + fun:Perl_prepend_elem + fun:Perl_newSTATEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -2913,18 +3303,19 @@ fun:Perl_newGP fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc + fun:Perl_newOP fun:Perl_newLISTOP fun:Perl_append_elem fun:Perl_yyparse @@ -2935,29 +3326,29 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_ck_rvconst - fun:Perl_newUNOP - fun:Perl_newSVREF + fun:calloc + fun:Perl_newSTATEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newBINOP + fun:malloc + fun:Perl_savesharedpv + fun:Perl_newSTATEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -2967,7 +3358,6 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> @@ -2976,66 +3366,81 @@ fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store - fun:Perl_pad_add_name - fun:Perl_allocmy - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_savestack_grow - fun:Perl_save_pushptrptr - fun:Perl_save_sptr + fun:calloc + fun:Perl_newOP + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_mg_copy + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc - fun:Perl_savesharedpv - fun:Perl_newSTATEOP + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSVpvn - fun:perl_construct - fun:init_embedded_perl - fun:main + fun:Perl_sv_upgrade + fun:Perl_newSV_type + fun:Perl_newIO + fun:Perl_gv_IOadd + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_hv_ksplit fun:perl_construct fun:init_embedded_perl fun:main @@ -3043,100 +3448,119 @@ { <insert_a_suppression_name_here> Memcheck:Leak + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_savestack_grow + fun:Perl_save_pushptrptr + fun:Perl_save_sptr + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv + fun:Perl_get_arena + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_upgrade + fun:Perl_newSV_type + fun:Perl_newXS fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepv + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_sv_upgrade + fun:Perl_newSV_type + fun:Perl_new_stackinfo + fun:Perl_init_stacks + fun:perl_construct fun:init_embedded_perl fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:Perl_sv_upgrade + fun:Perl_newSV_type + fun:perl_construct + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_get_arena + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_upgrade + fun:Perl_newSV_type obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpv - fun:Perl_pp_caller - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_sv_upgrade + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepv - fun:Perl_new_numeric - fun:Perl_init_i18nl10n - fun:perl_construct - fun:init_embedded_perl - fun:main + fun:Perl_get_arena + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_upgrade + fun:Perl_gv_init + fun:Perl_gv_fetchmeth + fun:Perl_gv_fetchmeth_autoload + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:PerlIO_list_alloc - fun:PerlIO_default_layers - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_sv_upgrade + fun:Perl_sv_2nv + fun:perl_construct fun:init_embedded_perl fun:main } @@ -3145,11 +3569,9 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_new obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_newSVpvn + fun:perl_construct fun:init_embedded_perl fun:main } @@ -3158,9 +3580,10 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init + fun:Perl_get_arena + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -3172,43 +3595,43 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_newIO - fun:Perl_gv_IOadd + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_gv_fetchpvn_flags + fun:Perl_sv_upgrade + fun:Perl_sv_setnv + fun:Perl_scan_num obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push - fun:Perl_scan_version - fun:Perl_upg_version + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSVpvn_share + fun:Perl_utilize + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv @@ -3217,105 +3640,87 @@ } { <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_pad_tidy - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + Memcheck:Cond + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_newANONHASH - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_scope - fun:Perl_newWHILEOP + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_scope - fun:Perl_newPROG - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn + fun:perl_construct fun:init_embedded_perl fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3324,43 +3729,25 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_bind_match - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newWHILEOP - fun:Perl_newFOROP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpv + fun:Perl_newXS_flags + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3371,16 +3758,16 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_mg_copy - fun:Perl_hv_common - fun:Perl_hv_common - fun:Perl_pp_helem + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pp_regcomp fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> @@ -3390,13 +3777,13 @@ fun:Perl_sv_grow fun:Perl_sv_setpvn fun:Perl_newSVpvn + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime + fun:perl_parse } { <insert_a_suppression_name_here> @@ -3404,10 +3791,10 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex + fun:Perl_sv_setsv_flags + fun:Perl_newSVsv + fun:Perl_save_item + fun:Perl_package fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -3417,26 +3804,27 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newASSIGNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpv + fun:Perl_pp_caller fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_newANONHASH + fun:malloc + fun:Perl_savesharedpv + fun:Perl_newSTATEOP + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -3444,7 +3832,6 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> @@ -3452,22 +3839,26 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setpv - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_setpvn + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:PerlIO_list_alloc + fun:PerlIO_default_layers + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3476,12 +3867,11 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_new obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3492,16 +3882,14 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -3512,60 +3900,44 @@ fun:Perl_sv_add_backref fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:Perl_pad_add_name - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pad_findmy - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_mro_get_linear_isa + fun:Perl_gv_fetchmeth + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_do_vop + fun:Perl_pp_bit_or + fun:Perl_runops_standard + fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_xsutils - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> @@ -3573,63 +3945,63 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend - fun:Perl_av_store - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_sv_2cv + fun:Perl_pp_rv2cv + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn fun:Perl_re_compile fun:Perl_pregcomp fun:Perl_pmruntime fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_newANONHASH + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime + fun:calloc + fun:Perl_newOP + fun:Perl_scalarseq + fun:Perl_block_end fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> @@ -3637,8 +4009,7 @@ fun:calloc fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP + fun:Perl_prepend_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -3648,30 +4019,29 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek fun:Perl_newGP fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3680,13 +4050,12 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_init_argv_symbols + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3697,55 +4066,38 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_pp_sassign + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_fbm_compile + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pp_regcomp fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newCONDOP + fun:Perl_newGVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -3755,145 +4107,145 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:calloc + fun:Perl_newPADOP + fun:Perl_newGVOP + fun:Perl_ck_ftst + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_ck_rvconst + fun:calloc + fun:Perl_newPADOP + fun:Perl_newGVOP + fun:Perl_ck_fun fun:Perl_newUNOP - fun:Perl_newAVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_new - fun:Perl_start_subparse + fun:calloc + fun:Perl_newUNOP + fun:Perl_ck_fun + fun:Perl_ck_spair + fun:Perl_newOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSTATEOP - fun:Perl_newFOROP + fun:Perl_newUNOP + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_magicname obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_fbm_compile + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_xsutils - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_regexec_flags + fun:Perl_pp_match fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newBINOP - fun:Perl_newASSIGNOP + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_safesysrealloc + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newASSIGNOP - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newCONDOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -3904,27 +4256,10 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:malloc - fun:realloc - fun:PerlIOUnix_refcnt_inc - fun:PerlIOUnix_open - fun:PerlIOBuf_open - fun:PerlIO_openn - fun:PerlIO_fdopen - fun:PerlIO_stdstreams - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_pad_tidy - fun:Perl_newATTRSUB - fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_newSVpvn_share obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -3933,26 +4268,26 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_sassign + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_sv_2cv + fun:Perl_pp_rv2cv fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_savesharedpv - fun:Perl_newSTATEOP - fun:Perl_newFOROP + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -3966,39 +4301,40 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newASSIGNOP + fun:Perl_append_elem + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_ck_rvconst - fun:Perl_newUNOP - fun:Perl_newCVREF + fun:calloc + fun:Perl_newLISTOP + fun:Perl_prepend_elem + fun:Perl_newSTATEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_newFOROP + fun:Perl_newLISTOP + fun:Perl_scope fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -4007,34 +4343,31 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP - fun:Perl_newANONATTRSUB + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP + fun:Perl_ck_subr + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:Perl_ck_eval + fun:Perl_newUNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -4043,12 +4376,12 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -4057,40 +4390,42 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2av - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_prepend_elem - fun:Perl_append_list - fun:Perl_newWHILEOP - fun:Perl_newFOROP - fun:Perl_yyparse + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_vcatpvfn + fun:Perl_sv_vcatpvf + fun:Perl_sv_catpvf obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_pmruntime + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -4102,90 +4437,74 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_newBINOP - fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newWHILEOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:PerlIO_list_push - fun:PerlIO_define_layer - fun:PerlIO_default_layers - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_ck_rvconst - fun:Perl_newUNOP - fun:Perl_newCVREF - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newNULLLIST - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newLOOPEX - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_hv_common + fun:Perl_hv_common_key_len obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_pp_method_named fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -4196,199 +4515,201 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_safesyscalloc fun:Perl_hv_common - fun:Perl_pp_hslice + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newASSIGNOP - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_hv_common obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_mro_get_linear_isa + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newBINOP - fun:Perl_newSLICEOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_safesyscalloc + fun:Perl_hv_common + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP - fun:Perl_fold_constants - fun:Perl_convert - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_safesyscalloc + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_add_name + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pad_findmy fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2av - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:Perl_pad_add_name - fun:Perl_allocmy - fun:Perl_yylex - fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newPMOP - fun:Perl_yylex - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_get_sv + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pp_regcomp } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:PerlIO_push + fun:PerlIOBuf_open + fun:PerlIO_openn + fun:PerlIO_fdopen + fun:PerlIO_stdstreams + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newOP - fun:Perl_scope + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -4402,138 +4723,135 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_convert + fun:calloc + fun:Perl_newOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_yylex + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_newANONLIST fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_add_name obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pad_findmy - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_ck_shift - fun:Perl_newOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_PerlIO obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_mg_copy - fun:Perl_hv_common - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_boot_core_PerlIO + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_boot_core_xsutils obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek + fun:calloc + fun:Perl_safesyscalloc fun:Perl_newGP fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package - fun:Perl_yyparse + fun:Perl_gv_fetchfile_flags + fun:Perl_gv_fetchfile + fun:Perl_newXS + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -4543,9 +4861,12 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_yylex - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_init_argv_symbols + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -4554,46 +4875,48 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_newSV - fun:Perl_yylex - fun:Perl_yyparse + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newSVREF - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchmeth + fun:Perl_gv_fetchmeth_autoload + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newATTRSUB - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchmeth + fun:Perl_gv_fetchmethod_autoload obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_pp_method_named fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -4604,450 +4927,21 @@ fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchsv - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_softref2xv + fun:Perl_pp_rv2sv fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_ck_rvconst - fun:Perl_newUNOP - fun:Perl_newAVREF - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_prepend_elem - fun:Perl_newSTATEOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_append_elem - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_fbm_compile - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_mg_copy - fun:Perl_hv_common - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_tidy - fun:Perl_newATTRSUB - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - fun:Perl_newIO - fun:Perl_gv_IOadd - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_ksplit - fun:perl_construct - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - fun:Perl_new_stackinfo - fun:Perl_init_stacks - fun:perl_construct - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_pp_vec - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - fun:Perl_pad_add_name - fun:Perl_allocmy - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_sv_setpv - fun:perl_construct - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSV_type - fun:Perl_gv_fetchpvn_flags - fun:Perl_newIO - fun:Perl_gv_IOadd - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSV - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_pad_add_name - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pad_findmy - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSV - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_magicname - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 fun:Perl_re_compile fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:Perl_newXS_flags - fun:Perl_boot_core_mro - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_savesharedpv - fun:Perl_newSTATEOP - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_regexec_flags - fun:Perl_pp_match + fun:Perl_pp_regcomp fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -5061,48 +4955,16 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_vcatpvfn - fun:Perl_sv_vcatpvf - fun:Perl_sv_catpvf - fun:Perl_vnumify - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_sv_add_backref fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_yylex + fun:Perl_gv_fetchsv + fun:Perl_ck_fun + fun:Perl_ck_open + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> @@ -5111,13 +4973,14 @@ fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store - fun:Perl_pad_tidy - fun:Perl_newATTRSUB + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> @@ -5126,84 +4989,84 @@ fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store - fun:Perl_pad_tidy - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newBINOP + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv + fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_magic_get - fun:Perl_mg_get - fun:Perl_sv_setsv_flags - fun:Perl_pp_sassign + fun:calloc + fun:Perl_newSTATEOP + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_do_vop - fun:Perl_pp_bit_or - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_xsutils + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set - fun:Perl_pp_aassign + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_sv_2cv - fun:Perl_pp_rv2cv + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newWHILEOP + fun:Perl_newFOROP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP + fun:Perl_newBINOP fun:Perl_newWHILEOP fun:Perl_newFOROP fun:Perl_yyparse @@ -5219,9 +5082,8 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_append_elem + fun:Perl_force_list fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -5230,14 +5092,30 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_append_elem + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newCONDOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -5247,14 +5125,34 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newNULLLIST + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_newIO + fun:Perl_gv_IOadd + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> @@ -5263,13 +5161,14 @@ fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 fun:Perl_share_hek - fun:Perl_newGP - fun:Perl_gv_init + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> @@ -5280,8 +5179,23 @@ fun:Perl_hv_common fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_get_sv + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:PerlIO_list_push + fun:PerlIO_default_layers + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5290,27 +5204,28 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_fbm_compile - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:malloc + fun:realloc + fun:PerlIOUnix_refcnt_inc + fun:PerlIOUnix_open + fun:PerlIOBuf_open + fun:PerlIO_openn + fun:PerlIO_fdopen + fun:PerlIO_stdstreams + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - obj:/usr/lib/libperl.so.5.10.1 + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_newSV + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5319,28 +5234,28 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version - fun:Perl_pp_require + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_pp_sassign fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_av_store - fun:Perl_pp_aassign + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_sv_mortalcopy + fun:Perl_pp_return fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -5352,11 +5267,21 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_ck_fun - fun:Perl_ck_open - fun:Perl_convert + fun:Perl_safesyscalloc + fun:Perl_sv_upgrade + fun:Perl_newSV_type + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newHVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -5368,11 +5293,8 @@ Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newSVREF obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_ck_fun - fun:Perl_ck_spair - fun:Perl_newOP + fun:Perl_newLOGOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -5382,86 +5304,104 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_newSVOP obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_append_elem + fun:Perl_newFOROP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newOP + fun:Perl_newWHILEOP + fun:Perl_newFOROP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_newSVpvn_share + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_new obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_init_argv_symbols - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_new + fun:Perl_start_subparse + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newWHILEOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_pad_tidy + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -5469,8 +5409,6 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -5479,6 +5417,7 @@ fun:Perl_newLISTOP fun:Perl_prepend_elem fun:Perl_newSTATEOP + fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -5486,33 +5425,32 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newBINOP - fun:Perl_bind_match + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newATTRSUB + fun:Perl_utilize fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_scope - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_newSVsv + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -5524,8 +5462,12 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_append_elem + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -5537,26 +5479,28 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5565,12 +5509,11 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newXS - fun:xs_init + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_catpvn_flags + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5579,66 +5522,50 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_sv_copypv - fun:Perl_pp_stringify - fun:Perl_runops_standard - fun:Perl_fold_constants - fun:Perl_convert + fun:calloc + fun:Perl_newPADOP + fun:Perl_newGVOP + fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_UNIVERSAL + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newUNOP + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common - fun:Perl_pp_helem + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_newSVOP + fun:Perl_newANONATTRSUB + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -5646,15 +5573,15 @@ fun:malloc fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> @@ -5665,68 +5592,70 @@ fun:Perl_hv_common fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newFOROP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_gv_fetchmeth - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version } { <insert_a_suppression_name_here> Memcheck:Leak fun:realloc fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_vcatpvfn - fun:Perl_sv_vcatpvf - fun:Perl_sv_catpvf - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_iterinit + fun:Perl_do_kv + fun:Perl_pp_padhv + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_safesyscalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_xsutils + fun:Perl_gv_stashpvn + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_yylex - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5737,41 +5666,39 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpvn - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newBINOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_newANONLIST + fun:Perl_force_list + fun:Perl_newUNOP + fun:Perl_newANONATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_get_sv + fun:Perl_pmruntime + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5781,79 +5708,59 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_get_sv + fun:Perl_newUNOP + fun:Perl_newHVREF + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp + fun:Perl_pp_require fun:Perl_runops_standard -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_boot_core_UNIVERSAL + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newSLICEOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2sv - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_init_stacks + fun:perl_construct + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_sv_2cv - fun:Perl_pp_rv2cv - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:realloc + fun:Perl_safesysrealloc + fun:PerlIO_list_push + fun:PerlIO_define_layer + fun:PerlIO_default_layers + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -5861,90 +5768,90 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_ck_fun - fun:Perl_ck_open - fun:Perl_convert + fun:Perl_pad_tidy + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP + fun:Perl_newPMOP + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newCONDOP + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:Perl_ck_fun + fun:Perl_ck_open + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> @@ -5953,10 +5860,10 @@ fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store - fun:Perl_av_push - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version + fun:Perl_pad_tidy + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv @@ -5965,11 +5872,14 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpv + fun:Perl_pad_add_name + fun:Perl_allocmy + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -5979,8 +5889,9 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc + fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_force_list + fun:Perl_convert fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -5989,59 +5900,64 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newASSIGNOP + fun:Perl_newOP + fun:Perl_newNULLLIST fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_convert - fun:Perl_newANONLIST + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_peep + fun:Perl_newPROG + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_newIO - fun:Perl_gv_IOadd - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_new + fun:Perl_start_subparse fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -6055,24 +5971,24 @@ fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_pp_require + fun:Perl_pp_hslice fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_safesyscalloc + fun:Perl_hv_common + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv @@ -6083,41 +5999,56 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_catpvn_flags - fun:Perl_sv_catsv_flags - fun:Perl_pp_regcomp + fun:calloc + fun:Perl_newSVOP + fun:Perl_fold_constants + fun:Perl_convert + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_push_scope + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep + fun:Perl_peep } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc + fun:Perl_newPADOP + fun:Perl_newGVOP + fun:Perl_ck_shift fun:Perl_newOP - fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc + fun:Perl_newUNOP + fun:Perl_ck_shift fun:Perl_newOP - fun:Perl_scope fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -6127,62 +6058,70 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newLISTOP - fun:Perl_prepend_elem - fun:Perl_newSTATEOP - fun:Perl_newFOROP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpv + fun:Perl_pad_add_name + fun:Perl_allocmy + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_newSVsv - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push + fun:Perl_newPMOP + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl fun:main @@ -6190,27 +6129,25 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newLISTOP + fun:Perl_convert + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2av - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_catpvn_flags - obj:/usr/lib/libperl.so.5.10.1 + fun:calloc + fun:Perl_safesyscalloc + fun:PerlIO_allocate + fun:PerlIO_stdstreams + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -6220,9 +6157,9 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newATTRSUB - fun:Perl_newANONATTRSUB + fun:Perl_safesyscalloc + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6237,16 +6174,14 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_hv_ksplit + fun:Perl_magic_setnkeys + fun:Perl_mg_set + fun:Perl_pp_sassign + fun:Perl_runops_standard + fun:perl_run + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -6254,62 +6189,62 @@ fun:malloc fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags fun:Perl_gv_stashpvn fun:Perl_gv_stashsv fun:Perl_package fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_pp_sassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package + fun:Perl_newATTRSUB + fun:Perl_utilize fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_yylex + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_newUNOP - fun:Perl_newAVREF - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_new_version fun:Perl_pp_require } { @@ -6321,19 +6256,20 @@ fun:Perl_av_store fun:Perl_av_fetch fun:Perl_pad_alloc - fun:Perl_peep - fun:Perl_newATTRSUB + fun:Perl_fold_constants + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_pmruntime + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6342,61 +6278,77 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_pp_vec + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpv + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_yylex + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_ck_fun - fun:Perl_ck_open - fun:Perl_convert + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newUNOP + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_pmruntime + fun:Perl_newPADOP + fun:Perl_newGVOP + fun:Perl_ck_shift + fun:Perl_newOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6404,18 +6356,14 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newATTRSUB + fun:Perl_newUNOP + fun:Perl_ck_shift + fun:Perl_newOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6423,75 +6371,80 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newAVREF + fun:Perl_newSTATEOP + fun:Perl_newFOROP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_fbm_compile - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv } { - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_push_scope - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc fun:Perl_peep fun:Perl_peep fun:Perl_peep fun:Perl_peep fun:Perl_peep + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags fun:Perl_gv_stashpvn fun:Perl_gv_stashsv @@ -6506,24 +6459,36 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_peep - fun:Perl_newATTRSUB + fun:Perl_new_stackinfo + fun:Perl_init_stacks + fun:perl_construct + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newBINOP + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newUNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_newSV + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6535,15 +6500,27 @@ { <insert_a_suppression_name_here> Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newSVREF + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store fun:Perl_av_fetch fun:Perl_pad_alloc - fun:Perl_peep - fun:Perl_peep - fun:Perl_newPROG + fun:Perl_ck_rvconst + fun:Perl_newUNOP + fun:Perl_newAVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6553,11 +6530,28 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:PerlIO_allocate - fun:PerlIO_stdstreams - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_mg_copy + fun:Perl_hv_common + fun:Perl_hv_common_key_len + obj:/usr/lib/libperl.so.5.10.1 obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -6572,45 +6566,49 @@ fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_hv_ksplit - fun:Perl_magic_setnkeys - fun:Perl_mg_set - fun:Perl_pp_sassign - fun:Perl_runops_standard - fun:perl_run + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse fun:init_embedded_perl fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_fbm_compile + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_newFOROP + fun:calloc + fun:Perl_newLISTOP + fun:Perl_append_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6620,32 +6618,29 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_ck_rvconst + fun:Perl_newUNOP + fun:Perl_newSVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6653,6 +6648,8 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -6662,22 +6659,22 @@ fun:Perl_newGP fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_stashpvn - fun:Perl_gv_stashsv - fun:Perl_package + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_pad_tidy - fun:Perl_newATTRSUB + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6690,8 +6687,8 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex + fun:Perl_newUNOP + fun:Perl_newAVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6707,32 +6704,16 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_mg_copy - fun:Perl_hv_common - fun:Perl_hv_common_key_len obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_pp_aassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_ck_rvconst - fun:Perl_newUNOP - fun:Perl_newSVREF + fun:Perl_newATTRSUB + fun:Perl_utilize fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse } { <insert_a_suppression_name_here> @@ -6740,23 +6721,22 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setpv - fun:Perl_pad_add_name - fun:Perl_allocmy - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_sv_setsv_flags + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepv - fun:Perl_newATTRSUB + fun:calloc + fun:Perl_newUNOP + fun:Perl_newCVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -6765,12 +6745,22 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:perl_alloc + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newSVOP + fun:Perl_scan_num fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -6780,7 +6770,20 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB - fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpv + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -6793,25 +6796,16 @@ fun:Perl_pad_alloc fun:Perl_peep fun:Perl_peep - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep - fun:Perl_peep -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:perl_alloc - fun:init_embedded_perl - fun:main + fun:Perl_newPROG + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newSVOP - fun:Perl_scan_num fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -6821,6 +6815,7 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -6830,10 +6825,13 @@ fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 fun:Perl_sv_upgrade - fun:Perl_sv_setpv - fun:perl_construct - fun:init_embedded_perl - fun:main + fun:Perl_newSV_type + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_mro_get_linear_isa + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set } { <insert_a_suppression_name_here> @@ -6843,11 +6841,8 @@ fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 fun:Perl_sv_upgrade - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_sv_setpv + fun:perl_construct fun:init_embedded_perl fun:main } @@ -6859,13 +6854,13 @@ fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 fun:Perl_sv_upgrade - fun:Perl_gv_init - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmeth_autoload - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version + fun:Perl_pp_vec + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> @@ -6875,8 +6870,10 @@ fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 fun:Perl_sv_upgrade - fun:Perl_sv_2nv - fun:perl_construct + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse fun:init_embedded_perl fun:main } @@ -6888,13 +6885,26 @@ fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 fun:Perl_sv_upgrade - fun:Perl_sv_setnv - fun:Perl_scan_num + fun:Perl_sv_setsv_flags + fun:Perl_sv_mortalcopy + fun:Perl_pp_leavesub + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_sv_upgrade + fun:Perl_sv_setpv + fun:perl_construct + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -6919,14 +6929,61 @@ fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newSV + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_pad_add_name + fun:Perl_allocmy + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV + fun:Perl_gv_SVadd + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_gv_fetchpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV fun:Perl_hv_common fun:Perl_hv_common_key_len fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_pp_require +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSV_type + fun:Perl_pad_add_name + fun:Perl_allocmy + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> @@ -6935,24 +6992,47 @@ fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newSV - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmeth_autoload - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version + fun:Perl_scan_num + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_newSVpv obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newSVhek + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_reentrant_init + fun:perl_construct + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newSTATEOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -6963,12 +7043,21 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_new_stackinfo + fun:Perl_init_stacks + fun:perl_construct + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc fun:Perl_savepvn fun:Perl_sv_magicext fun:Perl_sv_magic fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -6979,6 +7068,37 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_magicname + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:realloc + fun:Perl_safesysrealloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pp_regcomp + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc fun:Perl_sv_grow fun:Perl_sv_setpvn fun:perl_construct @@ -7020,7 +7140,9 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setpvn + fun:Perl_sv_setpv + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7031,9 +7153,7 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_savepv obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7042,19 +7162,50 @@ { <insert_a_suppression_name_here> Memcheck:Leak + fun:realloc + fun:Perl_safesysrealloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak fun:malloc - fun:Perl_savesharedpv + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn + fun:Perl_scan_version + fun:Perl_upg_version + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc - fun:init_embedded_perl - fun:main + fun:Perl_safesysmalloc + fun:Perl_savepvn + fun:Perl_regexec_flags + fun:Perl_pp_match + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse } { <insert_a_suppression_name_here> @@ -7062,7 +7213,7 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_savepv - fun:Perl_new_collate + fun:Perl_new_numeric fun:Perl_init_i18nl10n fun:perl_construct fun:init_embedded_perl @@ -7159,7 +7310,7 @@ fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchpv fun:Perl_newXS - fun:Perl_boot_core_xsutils + fun:xs_init obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7170,15 +7321,15 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend - fun:Perl_av_store - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_newIO + fun:Perl_gv_IOadd obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp - fun:Perl_runops_standard + fun:perl_parse } { <insert_a_suppression_name_here> @@ -7186,278 +7337,182 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_push - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set - fun:Perl_pp_aassign - fun:Perl_runops_standard -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_sv_add_backref + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex + fun:Perl_gv_stashpvn + fun:Perl_gv_stashsv + fun:Perl_package fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newLOGOP - fun:Perl_newCONDOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push + fun:Perl_op_clear + fun:Perl_op_free + fun:Perl_op_free + fun:Perl_op_free + fun:Perl_op_free + fun:Perl_op_free + fun:Perl_leave_scope } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newASSIGNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_pad_tidy + fun:Perl_newATTRSUB + fun:Perl_newANONATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_yylex - fun:Perl_yyparse + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv + fun:Perl_mro_get_linear_isa + fun:Perl_gv_fetchmeth + fun:Perl_gv_fetchmeth + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_newSVrv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_ck_subr - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push + fun:Perl_scan_version + fun:Perl_upg_version fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_ck_ftst - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_ck_fun - fun:Perl_convert - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_ck_fun - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newHVREF - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newCVREF - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_stashpvn fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_magicname - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_regexec_flags - fun:Perl_pp_match + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_magic_get + fun:Perl_mg_get + fun:Perl_sv_setsv_flags + fun:Perl_pp_sassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_yylex - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_mro_get_linear_isa + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set + fun:Perl_pp_aassign } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepv - fun:Perl_find_script + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_push obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_mro_get_linear_isa + fun:Perl_mro_isa_changed_in + fun:Perl_magic_setisa + fun:Perl_mg_set + fun:Perl_pp_aassign + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_do_vecset + fun:Perl_magic_setvec + fun:Perl_mg_set + fun:Perl_pp_sassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_mro_register - fun:Perl_boot_core_mro + fun:Perl_newATTRSUB +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:PerlIO_push + fun:PerlIOUnix_open + fun:PerlIOBuf_open + fun:PerlIO_openn + fun:PerlIO_fdopen + fun:PerlIO_stdstreams + fun:PerlIO_resolve_layers + fun:PerlIO_openn + fun:PerlIO_open obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_append_elem - fun:Perl_newWHILEOP + fun:Perl_newOP + fun:Perl_scope fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -7466,16 +7521,15 @@ fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_newSVpvn_share - fun:Perl_utilize + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_append_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -7485,27 +7539,10 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_vcatpvfn - fun:Perl_sv_vcatpvf - fun:Perl_sv_catpvf - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newATTRSUB + fun:Perl_newOP + fun:Perl_scope + fun:Perl_newPROG fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -7517,44 +7554,57 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpv obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmeth_autoload - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version - fun:Perl_upg_version + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_pp_concat + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version - fun:Perl_pp_require + fun:Perl_newATTRSUB + fun:Perl_utilize + fun:Perl_yyparse +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_sv_copypv + fun:Perl_pp_stringify fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_newSVsv - fun:Perl_save_item - fun:Perl_start_subparse - fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_get_sv obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7565,45 +7615,42 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_hv_common + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_gv_fetchpvn_flags obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmeth - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version - fun:Perl_upg_version + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_hv_common + fun:Perl_newUNOP obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newLOGOP + fun:Perl_newASSIGNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set - fun:Perl_pp_aassign + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_hv_common + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa - fun:Perl_mro_isa_changed_in - fun:Perl_magic_setisa - fun:Perl_mg_set - fun:Perl_pp_aassign + fun:Perl_pp_require fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_list @@ -7611,11 +7658,10 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchsv fun:Perl_yylex @@ -7623,63 +7669,46 @@ obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_boot_core_xsutils - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc + fun:calloc + fun:Perl_newSVOP + fun:Perl_fold_constants + fun:Perl_newUNOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_newXS_flags - fun:Perl_boot_core_mro + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_newATTRSUB } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:PerlIO_push - fun:PerlIOBuf_open - fun:PerlIO_openn - fun:PerlIO_fdopen - fun:PerlIO_stdstreams - fun:PerlIO_resolve_layers - fun:PerlIO_openn - fun:PerlIO_open + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_av_store + fun:Perl_pp_aassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newFOROP + fun:Perl_newUNOP + fun:Perl_bind_match fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_require @@ -7687,12 +7716,15 @@ fun:Perl_call_sv fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP + fun:Perl_newUNOP + fun:Perl_newCVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -7703,10 +7735,13 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags + fun:Perl_newPADOP + fun:Perl_newGVOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_ck_fun + fun:Perl_ck_spair + fun:Perl_newOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7716,13 +7751,13 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:Perl_newUNOP + fun:Perl_newSVREF + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_ck_fun + fun:Perl_ck_spair + fun:Perl_newOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7733,60 +7768,85 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_PerlIO - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_do_kv + fun:Perl_runops_standard + fun:perl_run fun:init_embedded_perl fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile + fun:Perl_pregcomp + fun:Perl_pmruntime +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchpv fun:Perl_newXS + fun:Perl_newXS_flags fun:Perl_boot_core_UNIVERSAL obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchpv - fun:Perl_newXS - fun:Perl_boot_core_xsutils + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_mg_copy + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_pp_helem + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchfile_flags - fun:Perl_gv_fetchfile - fun:Perl_newXS - fun:Perl_boot_core_xsutils + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_safesysrealloc + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_re_compile +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_savepv + fun:Perl_find_script obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl @@ -7795,34 +7855,26 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmeth_autoload - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_newSVrv - fun:Perl_scan_version - fun:Perl_upg_version - fun:Perl_new_version + fun:malloc + fun:Perl_savesharedpv + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmethod_autoload + fun:malloc + fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_method_named - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:Perl_hv_common + fun:Perl_mro_register + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> @@ -7831,21 +7883,24 @@ fun:Perl_safesysmalloc obj:/usr/lib/libperl.so.5.10.1 fun:Perl_share_hek - fun:Perl_newGP - fun:Perl_gv_init + fun:Perl_hv_name_set fun:Perl_gv_fetchpvn_flags fun:Perl_gv_fetchpv fun:Perl_newXS - fun:Perl_boot_core_PerlIO + fun:Perl_newXS_flags + fun:Perl_boot_core_mro obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newUNOP - fun:Perl_newASSIGNOP + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_newSVpvn_share + fun:Perl_utilize fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -7855,43 +7910,41 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants - fun:Perl_convert + fun:calloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newWHILEOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_pad_add_name - fun:Perl_allocmy - fun:Perl_yylex + fun:calloc + fun:Perl_newBINOP + fun:Perl_bind_match fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl - fun:main + fun:Perl_pp_require + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_list + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_newATTRSUB + fun:Perl_utilize } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime + fun:Perl_newLISTOP + fun:Perl_prepend_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse @@ -7901,66 +7954,73 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pmruntime + fun:calloc + fun:Perl_newLISTOP + fun:Perl_force_list + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newWHILEOP + fun:Perl_newLISTOP + fun:Perl_append_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list + fun:perl_parse + fun:init_embedded_perl + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newXS + fun:Perl_boot_core_PerlIO obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize + fun:perl_parse + fun:init_embedded_perl + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_re_compile - fun:Perl_pregcomp - fun:Perl_pp_regcomp - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_list obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newATTRSUB - fun:Perl_utilize - fun:Perl_yyparse + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchpv + fun:Perl_newXS + fun:Perl_boot_core_UNIVERSAL + obj:/usr/lib/libperl.so.5.10.1 + fun:perl_parse + fun:init_embedded_perl } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:Perl_savepvn + fun:Perl_sv_magicext + fun:Perl_sv_magic fun:Perl_gv_fetchpvn_flags - obj:/usr/lib/libperl.so.5.10.1 fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_require + fun:Perl_pp_entereval fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> @@ -7969,10 +8029,14 @@ fun:Perl_safesysmalloc fun:Perl_sv_grow fun:Perl_sv_setpvn - fun:Perl_newSVpv - fun:run_epn_check - fun:run_check - fun:main + fun:Perl_reg_numbered_buff_fetch + fun:Perl_magic_get + fun:Perl_mg_get + fun:Perl_sv_2pv_flags + fun:Perl_pp_unpack + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv } { <insert_a_suppression_name_here> @@ -7996,6 +8060,21 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_pp_sassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow fun:Perl_sv_2pv_flags fun:Perl_pp_concat fun:Perl_runops_standard @@ -8042,6 +8121,22 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_pp_aassign + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_pp_tie + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc fun:Perl_savepvn fun:Perl_sv_magicext fun:Perl_sv_magic @@ -8058,16 +8153,16 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pp_aelem + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_newSVsv + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_pp_helem + fun:Perl_runops_standard + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main } { <insert_a_suppression_name_here> @@ -8075,38 +8170,39 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_sv_copypv - fun:Perl_pp_stringify + fun:Perl_do_join + fun:Perl_pp_join + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_method + fun:Perl_pp_print fun:Perl_runops_standard - fun:Perl_fold_constants - fun:Perl_convert - fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval + fun:Perl_runops_standard } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_aassign + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepv - fun:Perl_newATTRSUB + fun:calloc + fun:Perl_newSVOP + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8120,9 +8216,8 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_convert + fun:Perl_newUNOP + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8131,6 +8226,7 @@ fun:Perl_call_pv fun:run_epn_check fun:run_check + fun:main } { <insert_a_suppression_name_here> @@ -8139,30 +8235,46 @@ fun:Perl_safesyscalloc fun:Perl_sv_magicext fun:Perl_sv_magic - fun:Perl_Gv_AMupdate - fun:Perl_gv_handler - fun:Perl_sv_clear - fun:Perl_sv_free2 - fun:Perl_sv_free - fun:Perl_gp_free - fun:Perl_leave_scope - fun:Perl_pop_scope + fun:Perl_mg_copy + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_pp_helem + fun:Perl_runops_standard + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_pp_bless + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_my_setenv + fun:Perl_magic_setenv + fun:Perl_mg_set + fun:Perl_pp_sassign fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_pp_tie + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common_key_len + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval + fun:Perl_runops_standard } { <insert_a_suppression_name_here> @@ -8216,8 +8328,8 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newBINOP - fun:Perl_newASSIGNOP + fun:Perl_newLISTOP + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8233,14 +8345,16 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_new_stackinfo - fun:Perl_pp_tie - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval } { <insert_a_suppression_name_here> @@ -8263,44 +8377,45 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_pp_concat + fun:Perl_av_extend + fun:Perl_sv_add_backref + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchmeth - fun:Perl_gv_fetchmethod_autoload - fun:Perl_pp_untie + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_hv_common + fun:Perl_pp_helem fun:Perl_runops_standard obj:/usr/lib/libperl.so.5.10.1 fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv + fun:run_epn_check } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_hv_name_set + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2av + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv @@ -8309,8 +8424,10 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newSVOP - fun:Perl_yylex + fun:Perl_safesyscalloc + fun:Perl_mro_meta_init + fun:Perl_mro_method_changed_in + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8318,8 +8435,22 @@ fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check - fun:run_check - fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval + fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> @@ -8342,9 +8473,9 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_sassign + fun:Perl_savepvn + fun:Perl_regexec_flags + fun:Perl_pp_match fun:Perl_runops_standard obj:/usr/lib/libperl.so.5.10.1 fun:Perl_runops_standard @@ -8356,18 +8487,18 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_peep - fun:Perl_newATTRSUB - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_die_where + fun:Perl_vdie + fun:Perl_die + fun:Perl_pp_die fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check } { <insert_a_suppression_name_here> @@ -8387,43 +8518,27 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len + fun:calloc + fun:Perl_safesyscalloc + fun:Perl_newGP + fun:Perl_gv_init fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval - fun:Perl_runops_standard - fun:Perl_call_sv -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_reg_numbered_buff_fetch - fun:Perl_magic_get - fun:Perl_mg_get - fun:Perl_sv_2pv_flags - fun:Perl_pp_unpack + fun:Perl_gv_fetchsv + fun:Perl_softref2xv + fun:Perl_pp_rv2av fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv + fun:run_epn_check } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc + fun:Perl_newSTATEOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_regexec_flags - fun:Perl_pp_subst + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv @@ -8436,10 +8551,10 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_my_stat - fun:Perl_pp_ftis + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pp_aelem fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv @@ -8452,22 +8567,6 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_aassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_pp_tie - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store fun:Perl_av_push @@ -8482,11 +8581,10 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newOP - fun:Perl_newLISTOP - fun:Perl_force_list - fun:Perl_newASSIGNOP + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_savepv + fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8494,6 +8592,7 @@ fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check + fun:run_check } { <insert_a_suppression_name_here> @@ -8501,7 +8600,8 @@ fun:calloc fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_append_elem + fun:Perl_force_list + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8509,7 +8609,6 @@ fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check - fun:run_check } { <insert_a_suppression_name_here> @@ -8517,7 +8616,7 @@ fun:calloc fun:Perl_newOP fun:Perl_newLISTOP - fun:Perl_prepend_elem + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8531,8 +8630,9 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newATTRSUB + fun:Perl_newSVOP + fun:Perl_fold_constants + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8541,14 +8641,13 @@ fun:Perl_call_pv fun:run_epn_check fun:run_check - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newCVREF + fun:Perl_newPADOP + fun:Perl_newGVOP fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -8563,16 +8662,17 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_pp_bless + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_pp_tie fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main } { <insert_a_suppression_name_here> @@ -8580,8 +8680,8 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_do_join - fun:Perl_pp_join + fun:Perl_sv_setpvn + fun:Perl_pp_substr fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_method @@ -8596,15 +8696,63 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_do_readline + fun:Perl_pp_readline + fun:Perl_runops_standard + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow fun:Perl_sv_setpvn - fun:Perl_pp_substr + fun:Perl_newSVpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_method - fun:Perl_pp_print +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newCVREF + fun:Perl_yylex + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newUNOP + fun:Perl_newGVREF + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> @@ -8613,62 +8761,78 @@ fun:Perl_safesysmalloc fun:Perl_sv_grow fun:Perl_sv_setsv_flags - fun:Perl_do_readline - fun:Perl_pp_readline + fun:Perl_sv_mortalcopy + fun:Perl_pp_return fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newLISTOP + fun:Perl_prepend_elem + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_hv_common_key_len - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_newSVsv + fun:Perl_save_item + fun:Perl_start_subparse fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard + fun:Perl_call_sv } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_append_elem - fun:Perl_yyparse + fun:Perl_safesyscalloc + fun:Perl_hv_common obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval + fun:Perl_mro_get_linear_isa + fun:Perl_gv_fetchmeth + fun:Perl_Gv_AMupdate + fun:Perl_sv_bless + fun:Perl_pp_bless fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main + fun:Perl_pp_tie } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_sv_mortalcopy - fun:Perl_pp_return + fun:Perl_av_extend + fun:Perl_pad_tidy + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check - fun:run_check - fun:main } { <insert_a_suppression_name_here> @@ -8691,38 +8855,40 @@ Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:Perl_hv_common - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_mro_get_linear_isa + fun:Perl_newGP + fun:Perl_gv_init fun:Perl_gv_fetchmeth - fun:Perl_Gv_AMupdate - fun:Perl_sv_bless - fun:Perl_pp_bless + fun:Perl_gv_fetchmethod_autoload + fun:Perl_pp_untie + fun:Perl_runops_standard + obj:/usr/lib/libperl.so.5.10.1 fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_pp_tie + fun:Perl_call_pv } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newUNOP + fun:Perl_newAVREF + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_common - fun:Perl_pp_helem - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main + fun:Perl_pp_entereval } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newAVREF + fun:Perl_newSVOP + fun:Perl_scan_num + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8731,39 +8897,38 @@ fun:Perl_call_pv fun:run_epn_check fun:run_check - fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_sv_add_backref - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:calloc + fun:Perl_newUNOP + fun:Perl_newSVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_share_hek - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:calloc + fun:Perl_newBINOP + fun:Perl_newASSIGNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> @@ -8785,17 +8950,33 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:malloc - fun:Perl_savesharedpv - fun:Perl_newSTATEOP + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_sv_copypv + fun:Perl_pp_stringify + fun:Perl_runops_standard + fun:Perl_fold_constants + fun:Perl_convert fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_share_hek + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_softref2xv + fun:Perl_pp_rv2av fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main } { <insert_a_suppression_name_here> @@ -8814,50 +8995,66 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_regexec_flags - fun:Perl_pp_match + fun:calloc + fun:Perl_safesyscalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_name_set + fun:Perl_gv_fetchpvn_flags + fun:Perl_gv_fetchsv + fun:Perl_softref2xv + fun:Perl_pp_rv2av fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_savesharedpv + fun:Perl_newSTATEOP + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check fun:run_check + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc + fun:malloc + fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_vcatpvfn - fun:Perl_sv_vcatpvf - fun:Perl_sv_catpvf - fun:Perl_vmess + fun:Perl_sv_setsv_flags + fun:Perl_pp_sassign + fun:Perl_runops_standard obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_vdie - fun:Perl_die - fun:Perl_pp_die fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check } { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_setpvn - fun:Perl_die_where - fun:Perl_vdie - fun:Perl_die - fun:Perl_pp_die + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_pad_tidy + fun:Perl_newATTRSUB + fun:Perl_yyparse + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv - fun:run_epn_check } { <insert_a_suppression_name_here> @@ -8878,21 +9075,6 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_sassign - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak fun:malloc fun:Perl_safesysmalloc fun:Perl_savepvn @@ -8911,59 +9093,56 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_get_arena - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_sv_upgrade - fun:Perl_newSV_type - fun:Perl_start_subparse - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval + fun:Perl_new_stackinfo + fun:Perl_pp_tie fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc + fun:Perl_get_arena obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_sv_upgrade fun:Perl_newSV_type - fun:Perl_pad_new fun:Perl_start_subparse fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv - fun:Perl_call_pv } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_safesyscalloc - fun:PerlIOBuf_get_base - fun:Perl_PerlIO_get_base - fun:PerlIOBuf_write - fun:Perl_PerlIO_write - fun:Perl_do_print - fun:Perl_pp_print - fun:Perl_runops_standard obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_regexec_flags + fun:Perl_pp_subst fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_savepvn - fun:Perl_sv_magicext - fun:Perl_sv_magic - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_newSVsv + fun:Perl_save_item + fun:Perl_package fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -8973,27 +9152,58 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_newSVsv - fun:Perl_save_item - fun:Perl_package + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_my_stat + fun:Perl_pp_ftis + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_safesyscalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_regexec_flags + fun:Perl_pp_substcont + fun:Perl_runops_standard + fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:calloc + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_prepend_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv + fun:Perl_call_pv + fun:run_epn_check + fun:run_check } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_regexec_flags - fun:Perl_pp_substcont + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_pp_aassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv @@ -9021,24 +9231,23 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newUNOP - fun:Perl_newSVREF - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main + fun:Perl_safesyscalloc + fun:Perl_sv_magicext + fun:Perl_sv_magic + fun:Perl_Gv_AMupdate + fun:Perl_gv_handler + fun:Perl_sv_clear + fun:Perl_sv_free2 + fun:Perl_sv_free + fun:Perl_gp_free + fun:Perl_leave_scope + fun:Perl_pop_scope } { <insert_a_suppression_name_here> Memcheck:Leak fun:calloc fun:Perl_newUNOP - fun:Perl_newGVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -9070,7 +9279,7 @@ Memcheck:Leak fun:calloc fun:Perl_newLISTOP - fun:Perl_convert + fun:Perl_append_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -9085,8 +9294,7 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_newLISTOP - fun:Perl_prepend_elem + fun:Perl_newBINOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval @@ -9118,37 +9326,6 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_newSVsv - fun:Perl_save_item - fun:Perl_start_subparse - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval - fun:Perl_runops_standard - fun:Perl_call_sv -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:realloc - fun:Perl_safesysrealloc - fun:Perl_sv_grow - fun:Perl_sv_catpvn_flags - fun:Perl_pp_concat - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check - fun:main -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_sv_add_backref fun:Perl_gv_init @@ -9165,16 +9342,31 @@ Memcheck:Leak fun:malloc fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_pad_tidy - fun:Perl_newATTRSUB + fun:Perl_sv_grow + fun:Perl_sv_setpvn + fun:Perl_newSVpvn_flags + obj:/usr/lib/libperl.so.5.10.1 + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + fun:malloc + fun:Perl_safesysmalloc + obj:/usr/lib/libperl.so.5.10.1 + fun:Perl_hv_common + fun:Perl_pp_helem + fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check + fun:run_check + fun:main } { <insert_a_suppression_name_here> @@ -9197,8 +9389,8 @@ fun:malloc fun:Perl_safesysmalloc fun:Perl_sv_grow - fun:Perl_sv_setsv_flags - fun:Perl_pp_sassign + fun:Perl_sv_setpvn + fun:Perl_pp_concat fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv @@ -9210,49 +9402,33 @@ <insert_a_suppression_name_here> Memcheck:Leak fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_yylex + fun:Perl_newOP + fun:Perl_newLISTOP + fun:Perl_append_elem fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv + fun:run_epn_check + fun:run_check } { <insert_a_suppression_name_here> Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - fun:Perl_av_extend - fun:Perl_av_store - fun:Perl_av_fetch - fun:Perl_pad_alloc - fun:Perl_fold_constants + fun:calloc fun:Perl_newUNOP fun:Perl_newAVREF fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newPADOP - fun:Perl_newGVOP - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check fun:run_check + fun:main } { <insert_a_suppression_name_here> @@ -9275,39 +9451,6 @@ Memcheck:Leak fun:calloc fun:Perl_newSVOP - fun:Perl_fold_constants - fun:Perl_convert - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check - fun:run_check -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_mro_meta_init - fun:Perl_mro_method_changed_in - fun:Perl_newATTRSUB - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_newSVOP - fun:Perl_scan_num fun:Perl_yylex fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 @@ -9317,22 +9460,7 @@ fun:Perl_call_pv fun:run_epn_check fun:run_check -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_hv_name_set - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2av - fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv - fun:run_epn_check + fun:main } { <insert_a_suppression_name_here> @@ -9341,30 +9469,30 @@ fun:Perl_safesysmalloc fun:Perl_av_extend fun:Perl_av_store - fun:Perl_pad_tidy + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_peep fun:Perl_newATTRSUB fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard - fun:Perl_call_sv - fun:Perl_call_pv } { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_newATTRSUB + fun:malloc + fun:Perl_safesysmalloc + fun:Perl_av_extend + fun:Perl_av_store + fun:Perl_av_fetch + fun:Perl_pad_alloc + fun:Perl_fold_constants + fun:Perl_newUNOP fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:Perl_pp_entereval fun:Perl_runops_standard - fun:Perl_call_sv } { <insert_a_suppression_name_here> @@ -9385,11 +9513,11 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_newSTATEOP - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_pp_entereval + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_catpvn_flags + fun:Perl_pp_concat fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv @@ -9400,31 +9528,16 @@ { <insert_a_suppression_name_here> Memcheck:Leak - fun:calloc - fun:Perl_safesyscalloc - fun:Perl_newGP - fun:Perl_gv_init - fun:Perl_gv_fetchpvn_flags - fun:Perl_gv_fetchsv - fun:Perl_softref2xv - fun:Perl_pp_rv2av + fun:realloc + fun:Perl_safesysrealloc + fun:Perl_sv_grow + fun:Perl_sv_setsv_flags + fun:Perl_pp_sassign fun:Perl_runops_standard fun:Perl_call_sv fun:Perl_call_pv fun:run_epn_check -} -{ - <insert_a_suppression_name_here> - Memcheck:Leak - fun:malloc - fun:Perl_safesysmalloc - obj:/usr/lib/libperl.so.5.10.1 - fun:Perl_newSV - fun:Perl_yylex - fun:Perl_yyparse - obj:/usr/lib/libperl.so.5.10.1 - fun:perl_parse - fun:init_embedded_perl + fun:run_check fun:main } { @@ -9437,8 +9550,9 @@ fun:Perl_gv_SVadd obj:/usr/lib/libperl.so.5.10.1 fun:Perl_gv_fetchpvn_flags + fun:Perl_yylex + fun:Perl_yyparse obj:/usr/lib/libperl.so.5.10.1 fun:perl_parse fun:init_embedded_perl - fun:main } | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/tools/check_gearman.c ^ |
@@ -137,7 +137,7 @@ void print_usage() { printf("usage:\n"); printf("\n"); - printf("check_gearman [ -H=<hostname> ]\n"); + printf("check_gearman [ -H=<hostname>[:port] ]\n"); printf(" [ -t=<timeout> ]\n"); printf(" [ -w=<jobs warning level> ] default: %i\n", opt_job_warning); printf(" [ -c=<jobs critical level> ] default: %i\n", opt_job_critical); | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/tools/gearman_top.c ^ |
@@ -116,7 +116,7 @@ void print_usage() { printf("usage:\n"); printf("\n"); - printf("gearman_top [ -H <hostname> ]\n"); + printf("gearman_top [ -H <hostname>[:port] ]\n"); printf(" [ -i <sec> seconds ]\n"); printf(" [ -q quiet mode ]\n"); printf("\n"); | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/worker/mod_gearman_p1.pl ^ |
@@ -179,8 +179,9 @@ package $package; sub hndlr { - \@ARGV = \@_ ; - local \$^W = 1 ; + \@ARGV = \@_; + local \$^W = 1; + \$ENV{NAGIOS_PLUGIN} = '$filename'; # <<< START of PLUGIN (first line of plugin is line 8 in the text) >>> $sub | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/worker/worker.c ^ |
@@ -156,7 +156,7 @@ /* start status worker */ make_new_child(GM_WORKER_STATUS); - /* setup childs */ + /* setup children */ for(x=0; x < mod_gm_opt->min_worker; x++) { make_new_child(GM_WORKER_MULTI); } @@ -583,8 +583,8 @@ if(mod_gm_opt->pidfile != NULL) unlink(mod_gm_opt->pidfile); - /* stop all childs */ - stop_childs(GM_WORKER_STOP); + /* stop all children */ + stop_children(GM_WORKER_STOP); /* detach shm */ if(shmdt(shm) < 0) @@ -596,20 +596,20 @@ } -/* stop all childs */ -void stop_childs(int mode) { +/* stop all children */ +void stop_children(int mode) { int status, chld; int waited = 0; int x, curpid; - gm_log( GM_LOG_TRACE, "stop_childs(%d)\n", mode); + gm_log( GM_LOG_TRACE, "stop_children(%d)\n", mode); /* ignore some signals for now */ signal(SIGTERM, SIG_IGN); signal(SIGINT, SIG_IGN); /* - * send term signal to our childs + * send term signal to our children * children will finish the current job and exit */ killpg(0, SIGTERM); @@ -633,7 +633,7 @@ count_current_worker(GM_DISABLED); if(current_number_of_workers == 0) return; - gm_log( GM_LOG_TRACE, "still waiting (%d) %d childs missing...\n", waited, current_number_of_workers); + gm_log( GM_LOG_TRACE, "still waiting (%d) %d children missing...\n", waited, current_number_of_workers); } if(mode == GM_WORKER_STOP) { @@ -669,7 +669,7 @@ } } - /* count childs a last time */ + /* count children a last time */ count_current_worker(GM_DISABLED); if(current_number_of_workers == 0) return; @@ -763,10 +763,10 @@ /* * restart workers gracefully: - * send term signal to our childs + * send term signal to our children * children will finish the current job and exit */ - stop_childs(GM_WORKER_RESTART); + stop_children(GM_WORKER_RESTART); /* start status worker */ make_new_child(GM_WORKER_STATUS); | ||
[+] | Changed | mod_gearman-1.2.2.tar.bz2/worker/worker_client.c ^ |
@@ -527,7 +527,7 @@ return NULL; } - snprintf(result, GM_BUFFERSIZE, "%s has %i worker and is working on %i jobs. Version: %s|worker=%i jobs=%ic", hostname, shm[1], shm[2], GM_VERSION, shm[1], shm[0] ); + snprintf(result, GM_BUFFERSIZE, "%s has %i worker and is working on %i jobs. Version: %s|worker=%i;;;%i;%i jobs=%ic", hostname, shm[1], shm[2], GM_VERSION, shm[1], mod_gm_opt->min_worker, mod_gm_opt->max_worker, shm[0] ); /* detach from shared memory */ if(shmdt(shm) < 0) |