Displaying 1 result from an estimated 1 matches for "nullderef".
Did you mean:
null_deref
2004 May 02
0
rsync 2.6.2: clean up compilation warnings
...arnings.
Jeremy
diff -uwr rsync-2.6.2-old/popt/popt.c rsync-2.6.2/popt/popt.c
--- rsync-2.6.2-old/popt/popt.c 2004-01-27 10:27:05.000000000 -0600
+++ rsync-2.6.2/popt/popt.c 2004-05-02 13:22:53.000000000 -0500
@@ -1128,7 +1128,7 @@
/*@=nullderef@*/
}
-const char *const poptStrerror(const int error)
+const char * poptStrerror(const int error)
{
switch (error) {
case POPT_ERROR_NOARG:
diff -uwr rsync-2.6.2-old/popt/popt.h rsync-2.6.2/popt/popt.h
--- rsync-2.6.2-old/popt/popt.h 2004-01-27 10:27:05.000000000 -0600
+++ rsync-2.6....