Displaying 3 results from an estimated 3 matches for "spoof_portmap".
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 10
0
[PATCH] nfsmount: free rem_name on errors
...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_file)
spoof_portmap = start_dummy_portmap(portmap_file);
- if (spoof_portmap == -1)
+ if (spoof_portmap == -1) {
+ free(rem_name);
return 1;
+ }
#endif
ret = 0;
--
1.7.5.3
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