return NULL;
}
- onion_extend_cpath(&circ->cpath, circ->build_state, &firsthop);
- if(!CIRCUIT_IS_ORIGIN(circ)) {
+ if(onion_extend_cpath(&circ->cpath, circ->build_state, &firsthop)<0 ||
+ !CIRCUIT_IS_ORIGIN(circ)) {
log_fn(LOG_INFO,"Generating first cpath hop failed.");
circuit_mark_for_close(circ);
return NULL;
/* now see if we're already connected to the first OR in 'route' */
+ tor_assert(firsthop);
log_fn(LOG_DEBUG,"Looking for firsthop '%s:%u'",
firsthop->address,firsthop->or_port);
/* imprint the circuit with its future n_conn->id */
routerinfo_t *exit;
router_get_routerlist(&rl);
r = new_route_len(options.PathlenCoinWeight, purpose, rl->routers);
- if (r < 0)
+ if (r < 1) /* must be at least 1 */
return NULL;
info = tor_malloc_zero(sizeof(cpath_build_state_t));
info->desired_path_len = r;