Skip to content

Commit 7e833ae

Browse files
authored
Merge pull request #10993 from hppritcha/fix_for_issue_10986
btl/ofi: fix an uninitialized variable
2 parents 9236457 + 6b47b37 commit 7e833ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/mca/btl/ofi/btl_ofi_component.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ static int mca_btl_ofi_init_device(struct fi_info *info)
419419
size_t num_contexts_to_create;
420420

421421
char *linux_device_name;
422-
void *ep_name;
422+
void *ep_name = NULL;
423423

424424
struct fi_info *ofi_info;
425425
struct fi_ep_attr *ep_attr;

0 commit comments

Comments
 (0)