aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/diff.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/coreutils/diff.c b/coreutils/diff.c
index 7a9f8c7dd..2ed26babe 100644
--- a/coreutils/diff.c
+++ b/coreutils/diff.c
@@ -1105,10 +1105,12 @@ static void diffdir(char *p1, char *p2)
1105 1105
1106 /* Check for trailing slashes. */ 1106 /* Check for trailing slashes. */
1107 1107
1108 if (p1[strlen(p1) - 1] == '/') 1108 dp1 = last_char_is(p1, '/');
1109 p1[strlen(p1) - 1] = '\0'; 1109 if (dp1 != NULL)
1110 if (p2[strlen(p2) - 1] == '/') 1110 *dp1 = '\0';
1111 p2[strlen(p2) - 1] = '\0'; 1111 dp2 = last_char_is(p2, '/');
1112 if (dp2 != NULL)
1113 *dp2 = '\0';
1112 1114
1113 /* Get directory listings for p1 and p2. */ 1115 /* Get directory listings for p1 and p2. */
1114 1116