Skip to content

Commit

Permalink
Error code check should be immediately after call.
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelkgutierrez committed Jul 19, 2018
1 parent 20e6a69 commit 0513f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdsdkv-server.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ struct sdsdkv_server : public personality {
m_mpi->barrier(m_mpi->get_world_comm());
//
rc = m_keyval_register_provider();
if (rc != SDSDKV_SUCCESS) return rc;
//
m_mpi->barrier(m_mpi->get_world_comm());
if (rc != SDSDKV_SUCCESS) return rc;
//
rc = m_keyval_add_db();
if (rc != SDSDKV_SUCCESS) return rc;
Expand Down

0 comments on commit 0513f0f

Please sign in to comment.