I found this problem when writing a document with a lot of pictures. I used htb option of figure environment, and some of the pictures appeared under footnotes.
Here's the MWE:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
test\footnote{test}
\begin{figure}[b]
\centering
\includegraphics[width=0.3\textwidth]{test.jpg}
\end{figure}
\end{document}
You can use any picture as test.jpg.

