We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f408ba commit 0ed7a08Copy full SHA for 0ed7a08
src/ip.cpp
@@ -565,7 +565,11 @@ int zmq::make_fdpair (fd_t *r_, fd_t *w_)
565
goto try_tcpip;
566
}
567
568
- create_ipc_wildcard_address (dirname, filename);
+ rc = create_ipc_wildcard_address (dirname, filename);
569
+ if (rc != 0) {
570
+ // This may happen if tmpfile creation fails
571
+ goto error_closelistener;
572
+ }
573
574
// Initialise the address structure.
575
rc = address.resolve (filename.c_str ());
0 commit comments