Skip to content

Commit

Permalink
#2673 Changed 0 to nullptr
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed Oct 15, 2024
1 parent 0f15ce7 commit 52a785b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/libcode/vx_data2d_python/python_dataplane.cc
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ bool straight_python_dataplane(const char * user_script_name,

{

PyObject * module_obj = 0;
PyObject * module_dict_obj = 0;
PyObject * key_obj = 0;
PyObject * numpy_array_obj = 0;
PyObject * attrs_dict_obj = 0;
PyObject * module_obj = nullptr;
PyObject * module_dict_obj = nullptr;
PyObject * key_obj = nullptr;
PyObject * numpy_array_obj = nullptr;
PyObject * attrs_dict_obj = nullptr;
ConcatString cs, user_dir, user_base;
const char *method_name = "straight_python_dataplane() -> ";

Expand Down

0 comments on commit 52a785b

Please sign in to comment.