summaryrefslogtreecommitdiff
path: root/nuttx/net/recvfrom.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-18 17:24:50 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-18 17:24:50 +0000
commit3a3f46b691da1747881032dec6f5b5af2c308cdd (patch)
treeecff66bdc625d12e567e18a7436c45ebc25bbeb7 /nuttx/net/recvfrom.c
parent550c3e958920b870dccf05955a8984727473e70e (diff)
downloadpx4-nuttx-3a3f46b691da1747881032dec6f5b5af2c308cdd.tar.gz
px4-nuttx-3a3f46b691da1747881032dec6f5b5af2c308cdd.tar.bz2
px4-nuttx-3a3f46b691da1747881032dec6f5b5af2c308cdd.zip
cosmetic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1276 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/net/recvfrom.c')
-rw-r--r--nuttx/net/recvfrom.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/net/recvfrom.c b/nuttx/net/recvfrom.c
index 343471124..cef2b8996 100644
--- a/nuttx/net/recvfrom.c
+++ b/nuttx/net/recvfrom.c
@@ -345,7 +345,7 @@ static inline void recvfrom_tcpsender(struct uip_driver_s *dev, struct recvfrom_
* TCP receive operation via by the uIP layer.
*
* Parameters:
- * dev The sructure of the network driver that caused the interrupt
+ * dev The structure of the network driver that caused the interrupt
* conn The connection structure associated with the socket
* flags Set of events describing why the callback was invoked
*
@@ -999,11 +999,13 @@ ssize_t recvfrom(int sockfd, FAR void *buf, size_t len, int flags,
/* Verify that non-NULL pointers were passed */
+#ifdef CONFIG_DEBUG
if (!buf)
{
err = EINVAL;
goto errout;
}
+#endif
/* Get the underlying socket structure */
/* Verify that the sockfd corresponds to valid, allocated socket */