If there is no upgrade for your theme available and are feeling brave, you can edit your category-template.php
file to check for the categories explicitly.
replace this line (line 176):
if(array_key_exists($category, $categories))
with this:
if(!(false === $category) && array_key_exists($category, $categories))
I have been having this error and have put a quick post about it here.