Compare commits
No commits in common. "25eee74cd845c4f3d3334716bc82983d69fd6986" and "759c0fe87ae31d4f1ceb64f8f49d9932154edae6" have entirely different histories.
25eee74cd8
...
759c0fe87a
@ -1,38 +0,0 @@
|
|||||||
From ddacb22dac891332c759293ab6297090216b121b Mon Sep 17 00:00:00 2001
|
|
||||||
From: binlingyu <binlingyu@uniontech.com>
|
|
||||||
Date: Mon, 20 May 2024 16:24:12 +0800
|
|
||||||
Subject: [PATCH] fix-memory-leak
|
|
||||||
|
|
||||||
---
|
|
||||||
hostname.c | 9 +++++++--
|
|
||||||
1 file changed, 7 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/hostname.c b/hostname.c
|
|
||||||
index 5be268e..63200be 100644
|
|
||||||
--- a/hostname.c
|
|
||||||
+++ b/hostname.c
|
|
||||||
@@ -262,15 +262,20 @@ show_name(enum type_t type)
|
|
||||||
switch(type)
|
|
||||||
{
|
|
||||||
case DEFAULT:
|
|
||||||
- printf("%s\n", localhost());
|
|
||||||
+ p=localhost();
|
|
||||||
+ printf("%s\n", p);
|
|
||||||
+ free(p);
|
|
||||||
break;
|
|
||||||
case SHORT:
|
|
||||||
p = localhost();
|
|
||||||
*(strchrnul(p, '.')) = '\0';
|
|
||||||
printf("%s\n", p);
|
|
||||||
+ free(p);
|
|
||||||
break;
|
|
||||||
case NIS:
|
|
||||||
- printf("%s\n", localdomain());
|
|
||||||
+ p=localdomain();
|
|
||||||
+ printf("%s\n", p);
|
|
||||||
+ free(p);
|
|
||||||
break;
|
|
||||||
case NIS_DEF:
|
|
||||||
printf("%s\n", localnisdomain());
|
|
||||||
--
|
|
||||||
2.20.1
|
|
||||||
@ -22,7 +22,7 @@ diff -up hostname/hostname.1.rh hostname/hostname.1
|
|||||||
--- hostname/hostname.1.rh 2013-11-03 15:24:23.000000000 +0100
|
--- hostname/hostname.1.rh 2013-11-03 15:24:23.000000000 +0100
|
||||||
+++ hostname/hostname.1 2013-11-04 10:12:59.670379153 +0100
|
+++ hostname/hostname.1 2013-11-04 10:12:59.670379153 +0100
|
||||||
@@ -80,6 +80,28 @@ complete FQDN of the system is returned
|
@@ -80,6 +80,28 @@ complete FQDN of the system is returned
|
||||||
.B THE FQDN
|
.B "THE FQDN"
|
||||||
below).
|
below).
|
||||||
|
|
||||||
+.LP
|
+.LP
|
||||||
@ -37,7 +37,7 @@ diff -up hostname/hostname.1.rh hostname/hostname.1
|
|||||||
+and
|
+and
|
||||||
+.BR gethostbyname(3)
|
+.BR gethostbyname(3)
|
||||||
+is that
|
+is that
|
||||||
+.BR gethostbyname(5)
|
+.BR gethostbyname(3)
|
||||||
+is network aware, so it consults
|
+is network aware, so it consults
|
||||||
+.IR /etc/nsswitch.conf
|
+.IR /etc/nsswitch.conf
|
||||||
+and
|
+and
|
||||||
@ -51,7 +51,7 @@ diff -up hostname/hostname.1.rh hostname/hostname.1
|
|||||||
When called with one argument or with the
|
When called with one argument or with the
|
||||||
.B \-\-file
|
.B \-\-file
|
||||||
@@ -105,8 +127,7 @@ command (see
|
@@ -105,8 +127,7 @@ command (see
|
||||||
.B THE FQDN
|
.B "THE FQDN"
|
||||||
below).
|
below).
|
||||||
.LP
|
.LP
|
||||||
-The host name is usually set once at system startup in
|
-The host name is usually set once at system startup in
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
Summary: Utility to set/show the host name or domain name
|
Summary: Utility to set/show the host name or domain name
|
||||||
Name: hostname
|
Name: hostname
|
||||||
Version: 3.23
|
Version: 3.20
|
||||||
Release: 2
|
Release: 7
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://packages.qa.debian.org/h/hostname.html
|
URL: http://packages.qa.debian.org/h/hostname.html
|
||||||
Source0: http://ftp.de.debian.org/debian/pool/main/h/hostname/hostname_%{version}.tar.gz
|
Source0: http://ftp.de.debian.org/debian/pool/main/h/hostname/hostname_%{version}.tar.gz
|
||||||
@ -9,9 +9,6 @@ Source1: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|||||||
Source2: nis-domainname
|
Source2: nis-domainname
|
||||||
Source3: nis-domainname.service
|
Source3: nis-domainname.service
|
||||||
Patch1: hostname-rh.patch
|
Patch1: hostname-rh.patch
|
||||||
Patch2: 5000-fix-memory-leak.patch
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package provides funcions to display or set system's hostname or NIS domain
|
This package provides funcions to display or set system's hostname or NIS domain
|
||||||
@ -51,29 +48,5 @@ fi
|
|||||||
%{_libexecdir}/%{name}/*
|
%{_libexecdir}/%{name}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue May 28 2024 binlingyu <binlingyu@uniontech.com> - 3.23-2
|
|
||||||
- Type:requirement
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:Fix memory leak.
|
|
||||||
|
|
||||||
* Sat Oct 29 2022 zhouyihang <zhouyihang3@h-partners.com> - 3.23-1
|
|
||||||
- Type:requirement
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:update hostname version to 3.23
|
|
||||||
|
|
||||||
* Thu May 27 2021 lijingyuan <lijingyuan3@huawei.com> - 3.21-2
|
|
||||||
- Type:requirement
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:Add the compilation dependency of gcc.
|
|
||||||
|
|
||||||
* Fri Jul 24 2020 gaihuiying <gaihuiying1@huawei.com> - 3.21-1
|
|
||||||
- Type:requirement
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:update hostname version to 3.21
|
|
||||||
|
|
||||||
* Fri Sep 20 2019 Alex Chao <zhaolei746@huawei.com> - 3.20-7
|
* Fri Sep 20 2019 Alex Chao <zhaolei746@huawei.com> - 3.20-7
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
@ -1,5 +0,0 @@
|
|||||||
version_control: NA
|
|
||||||
src_repo:
|
|
||||||
tag_prefix:
|
|
||||||
separator:
|
|
||||||
url: http://ftp.de.debian.org/debian/pool/main/h/hostname/
|
|
||||||
BIN
hostname_3.20.tar.gz
Normal file
BIN
hostname_3.20.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user