Skip to content
#

valgrind

Here are 168 public repositories matching this topic...

Anxdada
Anxdada commented Aug 7, 2020

source code:

#include <stdio.h>

int main(void) {
    return 0;
}

execute the following commands in order:

clang -Wall 1.c -g -o out
valgrind --tool=memcheck --leak-check=full ./out

here is output after executing above command:

=31708== Memcheck, a memory error detector
==31708== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==31708== Usi
enhancement help wanted good first issue 10.15
cargo-valgrind
jfrimmel
jfrimmel commented Feb 24, 2022

Currently each PR has the following issue, which should be fixed:

Output of cargo clippy

    Checking cargo-valgrind v2.0.2 (/home/runner/work/cargo-valgrind/cargo-valgrind)
warning: consider adding a `;` to the last statement for consistent formatting
  --> src/panic.rs:76:13
   |
76 |             old_hook(panic)
   |             ^^^^^^^^^^^^^^^ help: add a `;` here: `old_hook(p
good first issue

Improve this page

Add a description, image, and links to the valgrind topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the valgrind topic, visit your repo's landing page and select "manage topics."

Learn more