mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-06 15:13:51 +02:00
mp3check: forgot to add patch.
This commit is contained in:
parent
fe956aff26
commit
192c9ec813
1 changed files with 12 additions and 0 deletions
12
srcpkgs/mp3check/patches/placement-new.patch
Normal file
12
srcpkgs/mp3check/patches/placement-new.patch
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
--- tstring.h
|
||||||
|
+++ tstring.h
|
||||||
|
@@ -75,6 +75,9 @@
|
||||||
|
return ::operator new (size + tmem + 1);}
|
||||||
|
static void operator delete (void *p, size_t) {
|
||||||
|
::operator delete (p); }
|
||||||
|
+ // Gentoo Bug #685880
|
||||||
|
+ static void operator delete (void *p) {
|
||||||
|
+ ::operator delete (p); }
|
||||||
|
|
||||||
|
// create a new representation
|
||||||
|
static Rep *create(size_t tmem);
|
Loading…
Add table
Reference in a new issue