Blame SOURCES/ltrace-0.7.91-tautology.patch

244288
diff -r -U3 -p ltrace-0.7.91.orig/filter.c ltrace-0.7.91.dj/filter.c
244288
--- ltrace-0.7.91.orig/filter.c	2012-12-16 20:53:44.000000000 -0500
244288
+++ ltrace-0.7.91.dj/filter.c	2016-06-17 19:07:23.678490985 -0400
244288
@@ -79,7 +79,7 @@ filter_lib_matcher_name_init(struct filt
244288
 {
244288
 	switch (type) {
244288
 	case FLM_MAIN:
244288
-		assert(type != type);
244288
+		//assert(type != type);
244288
 		abort();
244288
 
244288
 	case FLM_SONAME:
244288
@@ -137,7 +137,7 @@ matcher_matches_library(struct filter_li
244288
 	case FLM_MAIN:
244288
 		return lib->type == LT_LIBTYPE_MAIN;
244288
 	}
244288
-	assert(matcher->type != matcher->type);
244288
+	//assert(matcher->type != matcher->type);
244288
 	abort();
244288
 }
244288
 
244288
Only in ltrace-0.7.91.dj/: filter.c~
244288
diff -r -U3 -p ltrace-0.7.91.orig/sysdeps/linux-gnu/proc.c ltrace-0.7.91.dj/sysdeps/linux-gnu/proc.c
244288
--- ltrace-0.7.91.orig/sysdeps/linux-gnu/proc.c	2013-10-11 15:27:11.000000000 -0400
244288
+++ ltrace-0.7.91.dj/sysdeps/linux-gnu/proc.c	2016-06-17 18:59:42.333774042 -0400
244288
@@ -242,9 +242,10 @@ process_tasks(pid_t pid, pid_t **ret_tas
244288
 	size_t alloc = 0;
244288
 
244288
 	while (1) {
244288
-		struct dirent entry;
244288
 		struct dirent *result;
244288
-		if (readdir_r(d, &entry, &result) != 0) {
244288
+		errno = 0;
244288
+		result = readdir(d);
244288
+		if (result == NULL && errno != 0) {
244288
 		fail:
244288
 			free(tasks);
244288
 			closedir(d);
244288
Only in ltrace-0.7.91.dj/sysdeps/linux-gnu: proc.c~
244288
diff -r -U3 -p ltrace-0.7.91.orig/sysdeps/linux-gnu/x86/fetch.c ltrace-0.7.91.dj/sysdeps/linux-gnu/x86/fetch.c
244288
--- ltrace-0.7.91.orig/sysdeps/linux-gnu/x86/fetch.c	2013-10-24 08:33:35.000000000 -0400
244288
+++ ltrace-0.7.91.dj/sysdeps/linux-gnu/x86/fetch.c	2016-06-17 18:52:33.962842191 -0400
244288
@@ -523,7 +523,7 @@ classify(struct process *proc, struct fe
244288
 
244288
 	default:
244288
 		/* Unsupported type.  */
244288
-		assert(info->type != info->type);
244288
+		//assert(info->type != info->type);
244288
 		abort();
244288
 	}
244288
 	abort();
244288
Only in ltrace-0.7.91.dj/sysdeps/linux-gnu/x86: fetch.c~
244288
diff -r -U3 -p ltrace-0.7.91.orig/sysdeps/linux-gnu/x86/trace.c ltrace-0.7.91.dj/sysdeps/linux-gnu/x86/trace.c
244288
--- ltrace-0.7.91.orig/sysdeps/linux-gnu/x86/trace.c	2012-12-16 20:53:45.000000000 -0500
244288
+++ ltrace-0.7.91.dj/sysdeps/linux-gnu/x86/trace.c	2016-06-17 18:52:16.699844065 -0400
244288
@@ -145,7 +145,7 @@ arch_type_sizeof(struct process *proc, s
244288
 		return (size_t)-2;
244288
 
244288
 	default:
244288
-		assert(info->type != info->type);
244288
+		//assert(info->type != info->type);
244288
 		abort();
244288
 	}
244288
 }
244288
@@ -158,7 +158,7 @@ arch_type_alignof(struct process *proc,
244288
 
244288
 	switch (info->type) {
244288
 	default:
244288
-		assert(info->type != info->type);
244288
+		//assert(info->type != info->type);
244288
 		abort();
244288
 		break;
244288
 
244288
Only in ltrace-0.7.91.dj/sysdeps/linux-gnu/x86: trace.c~
244288
diff -r -U3 -p ltrace-0.7.91.orig/value.c ltrace-0.7.91.dj/value.c
244288
--- ltrace-0.7.91.orig/value.c	2013-10-10 08:43:55.000000000 -0400
244288
+++ ltrace-0.7.91.dj/value.c	2016-06-17 19:11:43.441047589 -0400
244288
@@ -363,7 +363,7 @@ value_set_word(struct value *value, long
244288
 		u.u64 = word;
244288
 		break;
244288
 	default:
244288
-		assert(sz != sz);
244288
+		//assert(sz != sz);
244288
 		abort();
244288
 	}
244288
 
244288
@@ -414,7 +414,7 @@ value_extract_word(struct value *value,
244288
 		*retp = (long)u.u64;
244288
 		return 0;
244288
 	default:
244288
-		assert(sz != sz);
244288
+		//assert(sz != sz);
244288
 		abort();
244288
 	}
244288
 }
244288
Only in ltrace-0.7.91.dj/: value.c~