? geocode.patch
Index: geocode.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/geocode/geocode.module,v
retrieving revision 1.6
diff -u -p -r1.6 geocode.module
--- geocode.module	21 Dec 2009 17:34:43 -0000	1.6
+++ geocode.module	24 Jan 2010 14:31:46 -0000
@@ -10,8 +10,9 @@ function geocode($handler, $input, $retu
     $info = geocode_handler_info();
     if ($h = $info[$handler]) {
       // Load the geocoder's file.
-      $path = (isset($h['file path'])) ? $h['file path'] .'/' : '';
-      require_once $path . $h['file'];
+      if (isset($h['file path']) && isset($h['path'])) {
+        require_once $h['path'] . '/' . $h['file'];
+      }
 
       // Instantiate a class for it.
       $handlers[$handler] = New $handler($options);
