Blame SOURCES/0001-Fixed-reporting-an-error-when-failed-to-build-the-mo.patch

7a9ee6
From 85c1634a26faa572d3c558d4cf8aaaca5202d4e9 Mon Sep 17 00:00:00 2001
7a9ee6
From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= <jean-pierre.andre@wanadoo.fr>
7a9ee6
Date: Wed, 19 Dec 2018 15:57:50 +0100
7a9ee6
Subject: [PATCH] Fixed reporting an error when failed to build the mountpoint
7a9ee6
7a9ee6
The size check was inefficient because getcwd() uses an unsigned int
7a9ee6
argument.
7a9ee6
---
7a9ee6
 src/lowntfs-3g.c | 6 +++++-
7a9ee6
 src/ntfs-3g.c    | 6 +++++-
7a9ee6
 2 files changed, 10 insertions(+), 2 deletions(-)
7a9ee6
7a9ee6
diff --git a/src/lowntfs-3g.c b/src/lowntfs-3g.c
7a9ee6
index 993867fa..0660439b 100644
7a9ee6
--- a/src/lowntfs-3g.c
7a9ee6
+++ b/src/lowntfs-3g.c
7a9ee6
@@ -4411,7 +4411,8 @@ int main(int argc, char *argv[])
7a9ee6
 	else {
7a9ee6
 		ctx->abs_mnt_point = (char*)ntfs_malloc(PATH_MAX);
7a9ee6
 		if (ctx->abs_mnt_point) {
7a9ee6
-			if (getcwd(ctx->abs_mnt_point,
7a9ee6
+			if ((strlen(opts.mnt_point) < PATH_MAX)
7a9ee6
+			    && getcwd(ctx->abs_mnt_point,
7a9ee6
 				     PATH_MAX - strlen(opts.mnt_point) - 1)) {
7a9ee6
 				strcat(ctx->abs_mnt_point, "/");
7a9ee6
 				strcat(ctx->abs_mnt_point, opts.mnt_point);
7a9ee6
@@ -4419,6 +4420,9 @@ int main(int argc, char *argv[])
7a9ee6
 			/* Solaris also wants the absolute mount point */
7a9ee6
 				opts.mnt_point = ctx->abs_mnt_point;
7a9ee6
 #endif /* defined(__sun) && defined (__SVR4) */
7a9ee6
+			} else {
7a9ee6
+				free(ctx->abs_mnt_point);
7a9ee6
+				ctx->abs_mnt_point = (char*)NULL;
7a9ee6
 			}
7a9ee6
 		}
7a9ee6
 	}
7a9ee6
diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c
7a9ee6
index 6ce89fef..4e0912ae 100644
7a9ee6
--- a/src/ntfs-3g.c
7a9ee6
+++ b/src/ntfs-3g.c
7a9ee6
@@ -4148,7 +4148,8 @@ int main(int argc, char *argv[])
7a9ee6
 	else {
7a9ee6
 		ctx->abs_mnt_point = (char*)ntfs_malloc(PATH_MAX);
7a9ee6
 		if (ctx->abs_mnt_point) {
7a9ee6
-			if (getcwd(ctx->abs_mnt_point,
7a9ee6
+			if ((strlen(opts.mnt_point) < PATH_MAX)
7a9ee6
+			    && getcwd(ctx->abs_mnt_point,
7a9ee6
 				     PATH_MAX - strlen(opts.mnt_point) - 1)) {
7a9ee6
 				strcat(ctx->abs_mnt_point, "/");
7a9ee6
 				strcat(ctx->abs_mnt_point, opts.mnt_point);
7a9ee6
@@ -4156,6 +4157,9 @@ int main(int argc, char *argv[])
7a9ee6
 			/* Solaris also wants the absolute mount point */
7a9ee6
 				opts.mnt_point = ctx->abs_mnt_point;
7a9ee6
 #endif /* defined(__sun) && defined (__SVR4) */
7a9ee6
+			} else {
7a9ee6
+				free(ctx->abs_mnt_point);
7a9ee6
+				ctx->abs_mnt_point = (char*)NULL;
7a9ee6
 			}
7a9ee6
 		}
7a9ee6
 	}
7a9ee6
-- 
7a9ee6
2.20.1
7a9ee6