diff options
| author | Arkadiy Shapkin <ashapkin@artec-group.com> | 2013-03-17 04:46:46 +0400 |
|---|---|---|
| committer | Arkadiy Shapkin <ashapkin@artec-group.com> | 2013-03-18 03:30:26 +0400 |
| commit | 10c06114cbb1c384b7de3cca6d6601ee750f5178 (patch) | |
| tree | 05b4c66610443dd41b50114480da9e8b7e99a123 /src/fileops.c | |
| parent | a5f6138407efb6d8866fe8de5aac13454aefcd82 (diff) | |
| download | libgit2-10c06114cbb1c384b7de3cca6d6601ee750f5178.tar.gz | |
Several warnings detected by static code analyzer fixed
Implicit type conversion argument of function to size_t type
Suspicious sequence of types castings: size_t -> int -> size_t
Consider reviewing the expression of the 'A = B == C' kind. The expression is calculated as following: 'A = (B == C)'
Unsigned type is never < 0
Diffstat (limited to 'src/fileops.c')
| -rw-r--r-- | src/fileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c index c1824e812..e33377eac 100644 --- a/src/fileops.c +++ b/src/fileops.c @@ -529,7 +529,7 @@ int git_futils_cleanupdir_r(const char *path) git_buf fullpath = GIT_BUF_INIT; futils__rmdir_data data; - if ((error = git_buf_put(&fullpath, path, strlen(path)) < 0)) + if ((error = git_buf_put(&fullpath, path, strlen(path))) < 0) goto clean_up; data.base = ""; |
