diff options
Diffstat (limited to 'debian/patches/011_nxcomp_sa-restorer.patch')
-rw-r--r-- | debian/patches/011_nxcomp_sa-restorer.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/patches/011_nxcomp_sa-restorer.patch b/debian/patches/011_nxcomp_sa-restorer.patch new file mode 100644 index 000000000..de603d60d --- /dev/null +++ b/debian/patches/011_nxcomp_sa-restorer.patch @@ -0,0 +1,25 @@ +Description: sa_restorer vs. memset + Use memset instead of setting .sa_restorer to NULL. +Forwarded: not-yet +Author: Stéphane Graber <stgraber@ubuntu.com> +Last-Update: 2011-12-31 +--- a/Loop.cpp ++++ b/Loop.cpp +@@ -5895,7 +5895,7 @@ void InstallSignal(int signal, int action) + + #if defined(__linux__) + +- newAction.sa_restorer = NULL; ++ memset(&newAction, NULL, sizeof(newAction)); + + #endif + +@@ -6513,7 +6513,7 @@ void SetTimer(int value) + + #if defined(__linux__) + +- action.sa_restorer = NULL; ++ memset(&action, NULL, sizeof(action)); + + #endif + |