1
1

Fix potential segv through uninitialized variable

This commit was SVN r7946.
Этот коммит содержится в:
Jeff Squyres 2005-11-01 13:09:00 +00:00
родитель 4fc135fd2b
Коммит a2e507c629

Просмотреть файл

@ -308,7 +308,7 @@ int orte_gpr_replica_recv_get_conditional_cmd(orte_buffer_t *input_buffer,
orte_gpr_replica_segment_t *seg=NULL;
orte_gpr_replica_itag_t *tokentags=NULL, *keytags=NULL;
orte_gpr_keyval_t **conditions;
orte_gpr_replica_itagval_t **conds;
orte_gpr_replica_itagval_t **conds = NULL;
int rc, ret;
char *segment=NULL, **tokens=NULL, **keys=NULL;
size_t i=0, cnt=0;