Sync with 'maint'
This commit is contained in:
@ -46,6 +46,18 @@
|
|||||||
`fullPathname`::
|
`fullPathname`::
|
||||||
(WARN) A path contains the full path starting with "/".
|
(WARN) A path contains the full path starting with "/".
|
||||||
|
|
||||||
|
`gitattributesBlob`::
|
||||||
|
(ERROR) A non-blob found at `.gitattributes`.
|
||||||
|
|
||||||
|
`gitattributesLarge`::
|
||||||
|
(ERROR) The `.gitattributes` blob is too large.
|
||||||
|
|
||||||
|
`gitattributesLineLength`::
|
||||||
|
(ERROR) The `.gitattributes` blob contains too long lines.
|
||||||
|
|
||||||
|
`gitattributesMissing`::
|
||||||
|
(ERROR) Unable to read `.gitattributes` blob.
|
||||||
|
|
||||||
`gitattributesSymlink`::
|
`gitattributesSymlink`::
|
||||||
(INFO) `.gitattributes` is a symlink.
|
(INFO) `.gitattributes` is a symlink.
|
||||||
|
|
||||||
|
2
attr.c
2
attr.c
@ -752,7 +752,7 @@ static struct attr_stack *read_attr_from_index(struct index_state *istate,
|
|||||||
struct attr_stack *res;
|
struct attr_stack *res;
|
||||||
char *buf, *sp;
|
char *buf, *sp;
|
||||||
int lineno = 0;
|
int lineno = 0;
|
||||||
size_t size;
|
unsigned long size;
|
||||||
|
|
||||||
if (!istate)
|
if (!istate)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Reference in New Issue
Block a user