From 78b940643724e2ea9dc32cadfc2750ea3af571a5 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 12 Feb 2010 17:52:11 +0100 Subject: abrt-hook-ccpp: do not consider SIGQUIT to be a crash Signed-off-by: Denys Vlasenko --- src/Hooks/abrt-hook-python.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/Hooks/abrt-hook-python.cpp') diff --git a/src/Hooks/abrt-hook-python.cpp b/src/Hooks/abrt-hook-python.cpp index 356174f..3445954 100644 --- a/src/Hooks/abrt-hook-python.cpp +++ b/src/Hooks/abrt-hook-python.cpp @@ -37,21 +37,6 @@ static char *pid; static char *executable; -// Note: "" will return false -static bool isxdigit_str(const char *str) -{ - do { - if ((*str < '0' || *str > '9') // not a digit - && ((*str | 0x20) < 'a' || (*str | 0x20) > 'f') // not A-F or a-f - ) - { - return false; - } - str++; - } while (*str); - return true; -} - static bool printable_str(const char *str) { do { -- cgit