The caption package isn't adapted to the recent version of memhfixc package yet. (memhfixc is offered by the memoir document class and will be loaded automatically if hyperref is detected.)
This will be fixed in the upcoming version 3.3 of the caption package.
As a workaround you can swap the load order of the packages hyperref and caption, i.e. just load caption before hyperref:
Code: Select all
\documentclass{memoir}
\usepackage{caption}
\usepackage[
colorlinks=true
]{hyperref}
\begin{document}
\begin{table}
\centering
\caption{Name}
\begin{tabular}{cccccc}
&c1 & c2 & c3 & c4 & c5\\
r1 & a & b & c & d & e\\
r2 & f & g & h & i & j
\end{tabular}
\caption*{legend}
\end{table}
\end{document}