duma 2.5.15-1.1ubuntu2 source package in Ubuntu

Changelog

duma (2.5.15-1.1ubuntu2) zesty; urgency=medium

  * dumapp.{cpp,h}: Apply patch from Buildroot (thanks, Yann E. MORIN!) to fix
    FTBFS with C++14.

 -- Logan Rosen <email address hidden>  Sat, 24 Dec 2016 17:23:27 -0500

Upload details

Uploaded by:
Logan Rosen
Uploaded to:
Zesty
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe devel

Downloads

File Size SHA-256 Checksum
duma_2.5.15.orig.tar.gz 234.8 KiB baaf794854e3093ad1bddadbfb8ad4b220a7117d70359ee216bd59e353734e17
duma_2.5.15-1.1ubuntu2.diff.gz 8.2 KiB 146a7e0be9ec2c83ff998b6e15381210e76c930da9227774282fc6f930fcfe27
duma_2.5.15-1.1ubuntu2.dsc 1.5 KiB 5d41bc0393145bd667b4b1877e821e5fdd99e451c8d7b2af12c32580364b746f

View changes file

Binary packages built by this source

duma: library to detect buffer overruns and under-runs in C and C++ programs

 Open-source library to detect buffer overruns and under-runs
 in C and C++ programs.
 .
 This library is a fork of Bruce Perens Electric Fence library and adds
 some new features to it. Features of the DUMA library:
   * "overloads" all standard memory allocation functions like
     malloc(), calloc(), memalign(), strdup(), operator new, operator
     new[] and also their counterpart deallocation functions like free(),
     operator delete and operator delete[]
   * utilizes the MMU (memory management unit) of the CPU:
     allocates and protects an extra memory page to detect any illegal
     access beyond the top of the buffer (or bottom, at the user's option)
   * stops the program at exactly that instruction, which does the
     erroneous access to the protected memory page,
     allowing location of the defective source code in a debugger
     detects erroneous writes at the non-protected end of the memory
     block at deallocation of the memory block
   * detects mismatch of allocation/deallocation functions: f.e.
     allocation with malloc() but deallocation with operator delete
   * leak detection: detect memory blocks which were not deallocated
     until program exit
   * preloading of the library
   * allowing tests without necessity of changing source code or recompilation

duma-dbgsym: debug symbols for package duma

 Open-source library to detect buffer overruns and under-runs
 in C and C++ programs.
 .
 This library is a fork of Bruce Perens Electric Fence library and adds
 some new features to it. Features of the DUMA library:
   * "overloads" all standard memory allocation functions like
     malloc(), calloc(), memalign(), strdup(), operator new, operator
     new[] and also their counterpart deallocation functions like free(),
     operator delete and operator delete[]
   * utilizes the MMU (memory management unit) of the CPU:
     allocates and protects an extra memory page to detect any illegal
     access beyond the top of the buffer (or bottom, at the user's option)
   * stops the program at exactly that instruction, which does the
     erroneous access to the protected memory page,
     allowing location of the defective source code in a debugger
     detects erroneous writes at the non-protected end of the memory
     block at deallocation of the memory block
   * detects mismatch of allocation/deallocation functions: f.e.
     allocation with malloc() but deallocation with operator delete
   * leak detection: detect memory blocks which were not deallocated
     until program exit
   * preloading of the library
   * allowing tests without necessity of changing source code or recompilation