| 234 | #ifdef LINUX |
| 235 | // In order to avoid analyzing mtab in most cases check for non-device mounts first |
| 236 | struct stat fileStat; |
| 237 | unsigned m = 1; // use something that is known to be not non-device major |
| 238 | |
| 239 | if (os_utils::stat(expanded_filename.c_str(), &fileStat) == 0) |
no outgoing calls
no test coverage detected