That doesn't seem right. Pointers to pointers are set up so that the value is another pointer's location.
So if you were doing an assignment, you could do:
q = &p;
where q is a pointer to pointer...