Introduce abrt-addon-python3 package
Signed-off-by: Matej Habrnal <mhabrnal@redhat.com>
This commit is contained in:
parent
8949b9e40d
commit
69165ba9cc
187 changed files with 360360 additions and 0 deletions
34
0145-cli-remove-useless-code-from-print_crash.patch
Normal file
34
0145-cli-remove-useless-code-from-print_crash.patch
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
From bb703d67bbb82ab0b71c9fc7560754f943dc86be Mon Sep 17 00:00:00 2001
|
||||
From: Jakub Filak <jfilak@redhat.com>
|
||||
Date: Thu, 9 Jul 2015 11:54:15 +0200
|
||||
Subject: [PATCH] cli: remove useless code from print_crash()
|
||||
|
||||
Revealed by coverity.
|
||||
|
||||
Related: #1224984
|
||||
|
||||
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
||||
---
|
||||
src/cli/list.c | 3 +--
|
||||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/cli/list.c b/src/cli/list.c
|
||||
index 909d36d..49c3e30 100644
|
||||
--- a/src/cli/list.c
|
||||
+++ b/src/cli/list.c
|
||||
@@ -63,11 +63,10 @@ static void print_crash(problem_data_t *problem_data, int detailed, int text_siz
|
||||
char *desc;
|
||||
if (detailed)
|
||||
{
|
||||
- int show_multiline = (detailed ? MAKEDESC_SHOW_MULTILINE : 0);
|
||||
desc = make_description(problem_data,
|
||||
/*names_to_skip:*/ NULL,
|
||||
/*max_text_size:*/ text_size,
|
||||
- MAKEDESC_SHOW_FILES | show_multiline);
|
||||
+ MAKEDESC_SHOW_FILES | MAKEDESC_SHOW_MULTILINE);
|
||||
}
|
||||
else
|
||||
{
|
||||
--
|
||||
2.4.3
|
||||
|
||||
Reference in a new issue