Displaying 4 results from an estimated 4 matches for "rem_nam".
Did you mean:
rem_name
2011 Jun 10
0
[PATCH] nfsmount: free rem_name on errors
...unt/main.c
index beda723..b85901a 100644
--- a/usr/kinit/nfsmount/main.c
+++ b/usr/kinit/nfsmount/main.c
@@ -214,6 +214,7 @@ int nfsmount_main(int argc, char *argv[])
if ((rem_path = strchr(rem_path, ':')) == NULL) {
fprintf(stderr, "%s: need a server\n", progname);
+ free(rem_name);
return 1;
}
@@ -221,6 +222,7 @@ int nfsmount_main(int argc, char *argv[])
if (*rem_path != '/') {
fprintf(stderr, "%s: need a path\n", progname);
+ free(rem_name);
return 1;
}
@@ -239,8 +241,10 @@ int nfsmount_main(int argc, char *argv[])
if (portmap_fil...
2011 Jul 08
4
[PATCH 0/4] usr/kinit checkpatch
Various coding style fixes checkpatch warns about.
The goal is not to be 100% checkpatch compliant,
but to have more consistent coding style.
As this is a trivial patch serie, will land in 24 hours in klibc git,
unless of course ml review hits a bugger.
Checked with size(3) that the generated kinit, fstype, ipconfig and
nfsmount are the same.
maximilian attems (4):
[klibc] ipconfig: reduce
2008 Jun 05
2
RESEND [PATCH][BUGFIX] Fix termination of the spoofing portmapper
Hi,
I'm resending since I got no feedback: I assume that the message was lost...
The attached patch fixes a few bugs related to the spoofing portmapper used
by nfsmount.
Regards,
Louis
--
Dr Louis Rilling Kerlabs
Skype: louis.rilling Batiment Germanium
Phone: (+33|0) 6 80 89 08 23 80 avenue des Buttes de Coesmes
http://www.kerlabs.com/ 35700 Rennes
-------------- next part
2011 Jun 14
0
klibc 1.5.23 release
...[klibc] ppc64: Fix build failure with stricter as
maximilian attems (7):
[klibc] 1.5.22 released, next version is 1.5.23
[klibc] [JOBS] Debug compile fix
[klibc] dash merge update
[klibc] limits.h define LLONG_MIN, LLONG_MAX and ULLONG_MAX
[klibc] nfsmount: free rem_name on errors
[klibc] utils add minimal mv
[klibc] strndup(): Fix possible null pointer dereference