changeset in /hg/icedtea6: * patches/icedtea-fortify-source.patc...
doko at ubuntu.com
doko at ubuntu.com
Wed Dec 3 12:22:59 PST 2008
changeset 1df8eaba0e60 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=1df8eaba0e60
description:
* patches/icedtea-fortify-source.patch: Don't introduce new warnings.
diffstat:
2 files changed, 7 insertions(+), 6 deletions(-)
ChangeLog | 1 +
patches/icedtea-fortify-source.patch | 12 ++++++------
diffs (68 lines):
diff -r 18303d88247c -r 1df8eaba0e60 ChangeLog
--- a/ChangeLog Wed Dec 03 21:08:27 2008 +0100
+++ b/ChangeLog Wed Dec 03 21:22:19 2008 +0100
@@ -1,6 +1,7 @@ 2008-12-03 Matthias Klose <doko at ubuntu
2008-12-03 Matthias Klose <doko at ubuntu.com>
* patches/hotspot/14.0b08/icedtea-shark.patch: Fix path name.
+ * patches/icedtea-fortify-source.patch: Don't introduce new warnings.
2008-12-03 Matthias Klose <doko at ubuntu.com>
diff -r 18303d88247c -r 1df8eaba0e60 patches/icedtea-fortify-source.patch
--- a/patches/icedtea-fortify-source.patch Wed Dec 03 21:08:27 2008 +0100
+++ b/patches/icedtea-fortify-source.patch Wed Dec 03 21:22:19 2008 +0100
@@ -5,7 +5,7 @@
jio_fprintf(defaultStream::output_stream(), "%s", s);
} else {
- ::write(defaultStream::output_fd(), s, (int)strlen(s));
-+ ssize_t neverused_rv = ::write(defaultStream::output_fd(), s, (int)strlen(s));
++ ssize_t rv_neverused __attribute__((unused)) = ::write(defaultStream::output_fd(), s, (int)strlen(s));
}
}
@@ -16,7 +16,7 @@
void fileStream::write(const char* s, size_t len) {
- if (_file != NULL) fwrite(s, 1, len, _file);
-+ if (_file != NULL) size_t neverused_rv = fwrite(s, 1, len, _file);
++ if (_file != NULL) size_t rv_neverused __attribute__((unused)) = fwrite(s, 1, len, _file);
update_position(s, len);
}
@@ -25,7 +25,7 @@
void fdStream::write(const char* s, size_t len) {
- if (_fd != -1) ::write(_fd, s, (int)len);
-+ if (_fd != -1) ssize_t neverused_rv = ::write(_fd, s, (int)len);
++ if (_fd != -1) ssize_t rv_neverused __attribute__((unused)) = ::write(_fd, s, (int)len);
update_position(s, len);
}
@@ -36,7 +36,7 @@
dli_fname, sizeof(dli_fname), NULL);
assert(ret != 0, "cannot locate libjvm");
- realpath(dli_fname, buf);
-+ char *neverused_rv = realpath(dli_fname, buf);
++ char *rv_neverused __attribute__((unused)) = realpath(dli_fname, buf);
if (strcmp(Arguments::sun_java_launcher(), "gamma") == 0) {
// Support for the gamma launcher. Typical value for buf is
@@ -45,7 +45,7 @@
p = strstr(p, "_g") ? "_g" : "";
- realpath(java_home_var, buf);
-+ char *neverused_rv = realpath(java_home_var, buf);
++ char *rv_neverused __attribute__((unused)) = realpath(java_home_var, buf);
sprintf(buf + strlen(buf), "/jre/lib/%s", cpu_arch);
if (0 == access(buf, F_OK)) {
// Use current module name "libjvm[_g].so" instead of
@@ -54,7 +54,7 @@
} else {
// Go back to path of .so
- realpath(dli_fname, buf);
-+ neverused_rv = realpath(dli_fname, buf);
++ rv_neverused = realpath(dli_fname, buf);
}
}
}
More information about the distro-pkg-dev
mailing list