diff options
| author | Yaniv Kaul <ykaul@redhat.com> | 2018-08-02 16:02:33 +0300 | 
|---|---|---|
| committer | Amar Tumballi <amarts@redhat.com> | 2018-08-14 05:15:04 +0000 | 
| commit | b2b6ab8eff317f6a507ab23897ea6cd5c718d99a (patch) | |
| tree | 45fb1392f535f0236f057d9d9c932feda4f9ab40 /libglusterfs/src/client_t.c | |
| parent | 32c8f70f49c0e287c53998e37867f00fa775377b (diff) | |
All: remove memset() before sprintf()
It's not needed.
There's a good chance the compiler is smart enough to remove it
anyway, but it can't hurt - I hope.
Compile-tested only!
Change-Id: Id7c054e146ba630227affa591007803f3046416b
updates: bz#1193929
Signed-off-by: Yaniv Kaul <ykaul@redhat.com>
Diffstat (limited to 'libglusterfs/src/client_t.c')
| -rw-r--r-- | libglusterfs/src/client_t.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/libglusterfs/src/client_t.c b/libglusterfs/src/client_t.c index e002c1fbed9..aeade5b3a20 100644 --- a/libglusterfs/src/client_t.c +++ b/libglusterfs/src/client_t.c @@ -745,7 +745,6 @@ gf_client_dump_fdtables_to_dict (xlator_t *this, dict_t *dict)                                  continue;                          client = clienttable->cliententries[count].client;                          if (!strcmp (client->bound_xl->name, this->name)) { -                                memset(key, 0, sizeof (key));                                  snprintf (key, sizeof (key), "conn%d", count++);                                  fdtable_dump_to_dict (client->server_ctx.                                                        fdtable, @@ -864,7 +863,6 @@ gf_client_dump_inodes_to_dict (xlator_t *this, dict_t *dict)                                  continue;                          client = clienttable->cliententries[count].client;                          if (!strcmp (client->bound_xl->name, this->name)) { -                                memset(key, 0, sizeof (key));                                  if (client->bound_xl && client->bound_xl->                                                  itable) {                                          /* Presently every brick contains only @@ -880,7 +878,6 @@ gf_client_dump_inodes_to_dict (xlator_t *this, dict_t *dict)                                                  continue;                                          prev_bound_xl = client->bound_xl; -                                        memset (key, 0, sizeof (key));                                          snprintf (key, sizeof (key), "conn%d",                                                          count);                                          inode_table_dump_to_dict (client->  | 
