Sign in
chromium
/
chromiumos
/
third_party
/
systemd
/
refs/heads/factory-14162.B
/
.
/
coccinelle
/
xsprintf.cocci
blob: 660a35e3f4d9b340a5e90db9a1138ff44b8cf635 [
file
] [
log
] [
blame
] [
edit
]
@@
position p
:
script
:
python
()
{
not
p
[
0
].
file
.
startswith
(
"man/"
)
};
expression e
,
fmt
;
expression list vaargs
;
@@
-
snprintf@p
(
e
,
sizeof
(
e
),
fmt
,
vaargs
);
+
xsprintf
(
e
,
fmt
,
vaargs
);