This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
source 'https://rubygems.org' | |
ruby '2.4.1' | |
gem 'private_gem', git: '[email protected]:servercrunch/private-gem.git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for percona-toolkit on macOS 10.11.6 | |
Build date: 2017-01-24 13:27:15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for hashcat on macOS 10.11.6 | |
Build date: 2017-01-24 12:30:51 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for redsocks on macOS 10.11.6 | |
Build date: 2017-01-08 12:56:23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for redsocks on macOS 10.11.6 | |
Build date: 2017-01-08 09:54:24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for ipv6calc on macOS 10.11.6 | |
Build date: 2016-12-31 14:12:32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -aur a/src/Makefile.am b/src/Makefile.am | |
--- a/src/Makefile.am 2016-06-13 16:06:28.000000000 +0200 | |
+++ b/src/Makefile.am 2016-06-13 16:06:41.000000000 +0200 | |
@@ -7,7 +7,7 @@ | |
EXTRA_DIST = $(pkgdata_SCRIPTS) $(bin_SCRIPTS) $(noinst_SCRIPTS) | |
-lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.c lftp_rl.h attach.cc attach.h | |
+lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.cc lftp_rl.h attach.cc attach.h | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -aur a/src/Makefile.am b/src/Makefile.am | |
--- a/src/Makefile.am 2016-06-13 16:06:28.000000000 +0200 | |
+++ b/src/Makefile.am 2016-06-13 16:06:41.000000000 +0200 | |
@@ -7,7 +7,7 @@ | |
EXTRA_DIST = $(pkgdata_SCRIPTS) $(bin_SCRIPTS) $(noinst_SCRIPTS) | |
-lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.c lftp_rl.h attach.cc attach.h | |
+lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.cc lftp_rl.h attach.cc attach.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/src/libjasper/jpc/jpc_dec.c.orig 2015-12-27 21:58:46.000000000 +0100 | |
+++ a/src/libjasper/jpc/jpc_dec.c 2015-12-27 22:01:41.000000000 +0100 | |
@@ -1069,12 +1069,18 @@ | |
/* Apply an inverse intercomponent transform if necessary. */ | |
switch (tile->cp->mctid) { | |
case JPC_MCT_RCT: | |
- assert(dec->numcomps == 3); | |
+ if (dec->numcomps != 3 && dec->numcomps != 4) { | |
+ jas_eprintf("bad number of components (%d)\n", dec->numcomps); | |
+ return -1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/src/libjasper/base/jas_icc.c.orig Fri Jan 19 13:43:05 2007 | |
+++ a/src/libjasper/base/jas_icc.c Thu Oct 29 22:03:25 2015 | |
@@ -373,7 +373,7 @@ int jas_iccprof_save(jas_iccprof_t *prof, jas_stream_t | |
jas_icctagtab_t *tagtab; | |
tagtab = &prof->tagtab; | |
- if (!(tagtab->ents = jas_malloc(prof->attrtab->numattrs * | |
+ if (!(tagtab->ents = jas_alloc2(prof->attrtab->numattrs, | |
sizeof(jas_icctagtabent_t)))) | |
goto error; |
NewerOlder