[Bf-blender-cvs] [b5f282b] master: Remove nonnull attribute, NULL arg is valid here.

Campbell Barton noreply at git.blender.org
Tue Jul 21 01:59:04 CEST 2015


Commit: b5f282b2119c3ec16f1a99c43d8a144c576fb247
Author: Campbell Barton
Date:   Tue Jul 21 09:40:48 2015 +1000
Branches: master
https://developer.blender.org/rBb5f282b2119c3ec16f1a99c43d8a144c576fb247

Remove nonnull attribute, NULL arg is valid here.

===================================================================

M	source/blender/blenlib/BLI_fileops.h

===================================================================

diff --git a/source/blender/blenlib/BLI_fileops.h b/source/blender/blenlib/BLI_fileops.h
index fa5a4ac..9384273 100644
--- a/source/blender/blenlib/BLI_fileops.h
+++ b/source/blender/blenlib/BLI_fileops.h
@@ -120,7 +120,7 @@ bool   BLI_file_older(const char *file1, const char *file2) ATTR_WARN_UNUSED_RES
 
 /* read ascii file as lines, empty list if reading fails */
 struct LinkNode *BLI_file_read_as_lines(const char *file) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
-void   BLI_file_free_lines(struct LinkNode *lines) ATTR_NONNULL();
+void   BLI_file_free_lines(struct LinkNode *lines);
 
 /* this weirdo pops up in two places ... */
 #if !defined(WIN32)




More information about the Bf-blender-cvs mailing list