The problem with Double Hashing is that you can get a zero increment. You can read
Wikipedia's description of Double Hashing for a way to try and solve this issue. You may also want to check to see if the item is not in the hash table. The last issue you can encounter with hashing is that you'll end up with "skipped" spots.
ex:
Say you had a hash table of size 10, and the double hashing happens to have an increment of 2. Then, all of the odd values would never get checked.
The solution to the last problem is to only have hash tables of sizes which are prime numbers.