Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-02-10 05:59:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-10 07:27:28 +0300
commit2cbf32e0fb471c23a81785707200296a049b3017 (patch)
treed7f1fa0ccf7b4af10bb153e6a954a86230ec0527 /source/blender/blenlib/intern/storage.c
parent184a2ee5a4a79540656a545f65f7bdbe3803d1cd (diff)
Cleanup: double promotion
Also remove null checks from args with non-null attribute.
Diffstat (limited to 'source/blender/blenlib/intern/storage.c')
-rw-r--r--source/blender/blenlib/intern/storage.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 260a23c41dc..aba7c9d5ee2 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -232,7 +232,6 @@ int BLI_exists(const char *name)
if (res == -1) return(0);
#else
struct stat st;
- BLI_assert(name);
BLI_assert(!BLI_path_is_rel(name));
if (stat(name, &st)) return(0);
#endif