Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 529)
+++ trunk/docs/Changelog	(revision 530)
@@ -1,3 +1,4 @@
 4.2.4:
+	* fix 'clobbered by..' compiler warning is src/sh_portcheck.c
 	* fix compiler warning because of deprecated _BSD_SOURCE macro
 
Index: trunk/src/sh_portcheck.c
===================================================================
--- trunk/src/sh_portcheck.c	(revision 529)
+++ trunk/src/sh_portcheck.c	(revision 530)
@@ -948,4 +948,7 @@
 }
 
+void * sh_dummy_950_p = NULL;
+void * sh_dummy_951_p = NULL;
+
 static int check_port_udp_internal (int fd, int port, struct sh_sockaddr * paddr)
 {
@@ -964,4 +967,6 @@
   volatile int		sport = 0;
 
+  sh_dummy_950_p = (void*) &p;
+  
   sh_ipvx_set_port(paddr, port);
 
@@ -1116,4 +1121,5 @@
     }
   sl_close_fd (FIL__, __LINE__, fd);
+  sh_dummy_950_p = NULL; 
   return 0;
 }
@@ -1134,4 +1140,6 @@
   socklen_t		slen  = 0;
   volatile int		sport = 0;
+
+  sh_dummy_951_p = (void*) &p;
 
   sh_ipvx_set_port(paddr, port);
@@ -1305,4 +1313,5 @@
      }
   sl_close_fd (FIL__, __LINE__, fd);
+  sh_dummy_951_p = NULL;
   return 0;
 }
