Based on the code, it looks like you have entries in the customavatar table that correspond to users that have previously been deleted and those ids are what causing you problems.
If you run the following query it should remove all entries from the customavatar table that do not correspond to existing users.
Code:
DELETE FROM customavatar WHERE NOT userid IN (SELECT userid FROM user)
Backup the customavatar table before running the query just in case.