]> git.pld-linux.org Git - packages/breakpad.git/blob - breakpad-types.patch
- initial
[packages/breakpad.git] / breakpad-types.patch
1 --- breakpad-0.1.4/src/client/linux/handler/exception_handler.cc.orig   2021-12-07 12:24:39.063827800 +0100
2 +++ breakpad-0.1.4/src/client/linux/handler/exception_handler.cc        2022-01-28 21:00:39.303807029 +0100
3 @@ -138,7 +138,7 @@ void InstallAlternateStackLocked() {
4    // SIGSTKSZ may be too small to prevent the signal handlers from overrunning
5    // the alternative stack. Ensure that the size of the alternative stack is
6    // large enough.
7 -  static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
8 +  static const unsigned kSigStackSize = std::max<unsigned>(16384, SIGSTKSZ);
9  
10    // Only set an alternative stack if there isn't already one, or if the current
11    // one is too small.
This page took 0.047657 seconds and 3 git commands to generate.