We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a261e commit 309c5e2Copy full SHA for 309c5e2
src/libImaging/Arrow.c
@@ -71,8 +71,8 @@ int export_named_type(struct ArrowSchema* schema,
71
return 1;
72
}
73
74
- strlcpy(formatp, format, format_len);
75
- strlcpy(namep, name, name_len);
+ strncpy(formatp, format, format_len);
+ strncpy(namep, name, name_len);
76
77
*schema = (struct ArrowSchema) {
78
// Type description
0 commit comments