Sign in
chromium
/
chromiumos
/
third_party
/
systemd
/
refs/heads/factory-14162.B
/
.
/
coccinelle
/
empty-or-root.cocci
blob: bf2f614da67ff298ed9c571697ab73fc3b5fb324 [
file
] [
log
] [
blame
] [
edit
]
@@
expression s
;
@@
-
(
isempty
(
s
)
||
path_equal
(
s
,
"/"
))
+
empty_or_root
(
s
)
@@
expression s
;
@@
-
(!
isempty
(
s
)
&&
!
path_equal
(
s
,
"/"
))
+
!
empty_or_root
(
s
)