Browse Source

performance, CWE 398: Assign addr value in the initialization list

tags/v1.4.0
Nils 4 years ago
parent
commit
a99663759e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/nsmd.cpp

+ 2
- 2
src/nsmd.cpp View File

@@ -132,7 +132,7 @@ private:


public: public:


lo_address addr; /* */
lo_address addr=0; /* */
char *name; /* client application name */ char *name; /* client application name */
char *executable_path; /* path to client executable */ char *executable_path; /* path to client executable */
int pid; /* PID of client process */ int pid; /* PID of client process */
@@ -247,7 +247,6 @@ public:
{ {
_label = 0; _label = 0;
_gui_visible = true; _gui_visible = true;
addr = 0;
_reply_errcode = 0; _reply_errcode = 0;
_reply_message = 0; _reply_message = 0;
pid = 0; pid = 0;
@@ -262,6 +261,7 @@ public:
launch_error = 0; launch_error = 0;
dirty = NULL; dirty = NULL;
status = ""; status = "";

} }


~Client ( ) ~Client ( )


Loading…
Cancel
Save