freopen(3) is a C-oriented solution (not C++ as the question asked for), and it is just luck that makes it work. It is not specified to work. It only works because when file descriptor 2 is closed and /dev/null is opened, it gets file descriptor 2. In a multi-threaded environment, this may fail. You also cannot guarantee that the implementation of freopen(3) first closes the given stream before opening the new file. This is all assuming that you cannot assume that libxml2 uses C-style stdio.
A POSIX solution to this is to use open(2) and dup2(2):
#include <sys/types.h>
#include <sts/stat.h>
#include <fcntl.h>
#include <unistd.h>
...
/* error checking elided for brevity */
int fd = ::open("/dev/null", O_WRONLY);
::dup2(2, fd);
::close(fd);