get_next_post() not working

Only a guess but you might need

global $post

before your code. According to the Codex docs for the functions you are using the return values are

Null if global $post is not set.

Also you might want to use their suggested logicals:

if (!empty( $prev_post ))