Engstrom, John wrote: > Yeah, technically the line "LIBSSH2_SESSION **session;" is actually > "LIBSSH2_SESSION **session)" as in it's the last parameter to a function. > The calling code passes in the address of a LIBSSH2_SESSION *.
Yes, you dereference a double pointer, but which address does it pass? If all you have is a pointer to a pointer then you have no actual memory where a pointer can be stored. Why are you using a double pointer? It seems to be getting you into trouble. //Peter _______________________________________________ libssh2-devel http://cool.haxx.se/cgi-bin/mailman/listinfo/libssh2-devel
