[48ffcc5bdf9] temp-sybren-usd-patch-02: USD: 1024 → FILE_MAX

Sybren A. Stüvel noreply at git.blender.org
Thu Nov 28 17:56:04 CET 2019


Commit: 48ffcc5bdf9d4f978c987bc2fa4290902fe174b8
Author: Sybren A. Stüvel
Date:   Tue Nov 26 14:03:12 2019 +0100
Branches: temp-sybren-usd-patch-02
https://developer.blender.org/rB48ffcc5bdf9d4f978c987bc2fa4290902fe174b8

USD: 1024 → FILE_MAX

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

M	source/blender/usd/intern/usd_capi.cc

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

diff --git a/source/blender/usd/intern/usd_capi.cc b/source/blender/usd/intern/usd_capi.cc
index 835562a5dbf..1c2e28f04c1 100644
--- a/source/blender/usd/intern/usd_capi.cc
+++ b/source/blender/usd/intern/usd_capi.cc
@@ -36,6 +36,7 @@ extern "C" {
 #include "BKE_scene.h"
 
 #include "BLI_fileops.h"
+#include "BLI_path_util.h"
 #include "BLI_string.h"
 
 #include "MEM_guardedalloc.h"
@@ -50,7 +51,7 @@ struct ExportJobData {
   Depsgraph *depsgraph;
   wmWindowManager *wm;
 
-  char filename[1024];
+  char filename[FILE_MAX];
   USDExportParams params;
 
   short *stop;
@@ -179,7 +180,7 @@ bool USD_export(bContext *C,
   job->bmain = CTX_data_main(C);
   job->wm = CTX_wm_manager(C);
   job->export_ok = false;
-  BLI_strncpy(job->filename, filepath, 1024);
+  BLI_strncpy(job->filename, filepath, sizeof(job->filename));
 
   job->depsgraph = DEG_graph_new(job->bmain, scene, view_layer, params->evaluation_mode);
   job->params = *params;



More information about the Bf-blender-cvs mailing list