@@ -186,6 +186,9 @@ void print_columns(const struct string_list *list, unsigned int colopts,
if (opts && (0 > opts->padding))
BUG("padding must be non-negative");
+ if (opts && (opts->width > 0) && opts->indent &&
+ (opts->width < strlen(opts->indent)))
+ die("length of indent cannot exceed width");
if (!list->nr)
return;
assert((colopts & COL_ENABLE_MASK) != COL_AUTO);
@@ -367,6 +370,9 @@ int run_column_filter(int colopts, const struct column_options *opts)
if (opts && (0 > opts->padding))
BUG("padding must be non-negative");
+ if (opts && (opts->width > 0) && opts->indent &&
+ (opts->width < strlen(opts->indent)))
+ die("length of indent cannot exceed width");
if (fd_out != -1)
return -1;
@@ -206,4 +206,26 @@ EOF
test_cmp expected actual
'
+test_expect_success 'length of indent cannot exceed width' '
+ cat >input <<\EOF &&
+1 2 3 4 5 6
+EOF
+ cat >expected <<\EOF &&
+fatal: length of indent cannot exceed width
+EOF
+ test_must_fail git column --mode=column --width=1 --indent="--" <input >actual 2>&1 &&
+ test_cmp expected actual
+'
+
+test_expect_success 'padding must be non-negative checked before indent length' '
+ cat >input <<\EOF &&
+1 2 3 4 5 6
+EOF
+ cat >expected <<\EOF &&
+fatal: --padding must be non-negative
+EOF
+ test_must_fail git column --mode=column --padding=-1 --width=1 --indent="--" <input >actual 2>&1 &&
+ test_cmp expected actual
+'
+
test_done