Commit: 20a7889df13bda82152ab50884161dcf10531d18 Author: Dalai Felinto Date: Thu Sep 25 20:17:32 2014 +0200 Branches: multiview https://developer.blender.org/rB20a7889df13bda82152ab50884161dcf10531d18
Fix for crashes on release build when rendering, big kudos for Lukas Toenne =================================================================== M source/blender/blenlib/BLI_path_util.h =================================================================== diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h index 754cbbf..a236641 100644 --- a/source/blender/blenlib/BLI_path_util.h +++ b/source/blender/blenlib/BLI_path_util.h @@ -158,7 +158,7 @@ bool BLI_parent_dir(char *path) ATTR_NONNULL(); * \retval Returns true if the path was relative (started with "//"). */ bool BLI_path_abs(char *path, const char *basepath) ATTR_NONNULL(); -bool BLI_path_view(char *path, const char *view) ATTR_NONNULL(); +bool BLI_path_view(char *path, const char *view) ATTR_NONNULL(1); bool BLI_path_frame(char *path, int frame, int digits) ATTR_NONNULL(); bool BLI_path_frame_range(char *path, int sta, int end, int digits) ATTR_NONNULL(); bool BLI_path_frame_check_chars(const char *path) ATTR_NONNULL(); _______________________________________________ Bf-blender-cvs mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-blender-cvs
