diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-19 13:02:50 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-19 13:02:50 +0000 |
commit | 1096a6b82c4110f7a15132c9a2b525899d62380c (patch) | |
tree | 253b431bc06ce806ee47aa7b7c4285da8c5503d6 /src/htscoremain.c | |
parent | 211c870cbaf49795e5e15b7726f5f52da7a8cf4a (diff) |
httrack 3.43.12 (again)
Diffstat (limited to 'src/htscoremain.c')
-rw-r--r-- | src/htscoremain.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/htscoremain.c b/src/htscoremain.c index 634bf86..bfaebaf 100644 --- a/src/htscoremain.c +++ b/src/htscoremain.c @@ -1605,11 +1605,13 @@ HTSEXT_API int hts_main2(int argc, char **argv, httrackp *opt) { return 0; break; case '~': /* internal lib test */ - { - char thisIsATestYouShouldSeeAnError[12]; - strcpybuff(thisIsATestYouShouldSeeAnError, "0123456789012345678901234567890123456789"); - return 0; - } + //Disabled because choke on GCC 4.3 (toni from links2linux.de) + //{ + // char thisIsATestYouShouldSeeAnError[12]; + // const char *const bufferOverflowTest = "0123456789012345678901234567890123456789"; + // strcpybuff(thisIsATestYouShouldSeeAnError, bufferOverflowTest); + // return 0; + //} break; case 'f': opt->flush=1; break; case 'h': |