summaryrefslogtreecommitdiff
path: root/source4/ntvfs/ipc/vfs_ipc.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-02-22 11:35:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:10:51 -0500
commit218f289ed75e9e10feadb92fbbb41e69025ab010 (patch)
tree7a3bc28d9290bb38be3c3af4886ba04696fc5872 /source4/ntvfs/ipc/vfs_ipc.c
parent90428a44a91d0a97769ba6c2d8459c35a9e96b12 (diff)
downloadsamba-218f289ed75e9e10feadb92fbbb41e69025ab010.tar.gz
samba-218f289ed75e9e10feadb92fbbb41e69025ab010.tar.bz2
samba-218f289ed75e9e10feadb92fbbb41e69025ab010.zip
r5501: check the return of talloc with the NT_STATUS_HAVE_NO_MEMORY()
macro... metze (This used to be commit 9ec6c0e97765e60ef195296f17d6a27b5d0dcca9)
Diffstat (limited to 'source4/ntvfs/ipc/vfs_ipc.c')
-rw-r--r--source4/ntvfs/ipc/vfs_ipc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c
index 04a1a06db3..abb4c51f65 100644
--- a/source4/ntvfs/ipc/vfs_ipc.c
+++ b/source4/ntvfs/ipc/vfs_ipc.c
@@ -80,7 +80,10 @@ static NTSTATUS ipc_connect(struct ntvfs_module_context *ntvfs,
struct ipc_private *private;
tcon->fs_type = talloc_strdup(tcon, "IPC");
+ NT_STATUS_HAVE_NO_MEMORY(tcon->fs_type);
+
tcon->dev_type = talloc_strdup(tcon, "IPC");
+ NT_STATUS_HAVE_NO_MEMORY(tcon->dev_type);
/* prepare the private state for this connection */
private = talloc(tcon, struct ipc_private);