Displaying 20 results from an estimated 600 matches similar to: "new release 3.4.0 - critical security release"
2025 Jan 14
1
new release 3.4.0 - critical security release
A new dependency was added since 3.3, alloca(), which is not portable. Is there a way around this?
Thanks,
Randall
 
From: rsync <rsync-bounces at lists.samba.org> On Behalf Of rsync.project via rsync
Sent: January 14, 2025 2:49 PM
To: rsync-announce at lists.samba.org
Cc: rsync at lists.samba.org
Subject: new release 3.4.0 - critical security release
 
We have just released version
2025 Jan 14
2
new release 3.4.0 - critical security release
the alloca comes from the new popt release. What system are you having an
issue with?
On Wed, 15 Jan 2025 at 07:16, <rsbecker at nexbridge.com> wrote:
> A new dependency was added since 3.3, alloca(), which is not portable. Is
> there a way around this?
>
> Thanks,
>
> Randall
>
>
>
> *From:* rsync <rsync-bounces at lists.samba.org> *On Behalf Of
2025 Jan 15
2
new release 3.4.0 - critical security release
Another issue here in findme.c. strlcpy() is a BSD-only method and definitely not portable.
Please consider other platforms when creating patches. I can provide a patch to this
patch also.
 
Thanks,
Randall
 
From: rsync <rsync-bounces at lists.samba.org> On Behalf Of Randall S. Becker via rsync
Sent: January 14, 2025 6:46 PM
To: 'rsync.project' <rsync.project at
2025 Jan 14
1
new release 3.4.0 - critical security release
This happens on NonStop x86 and ia64. I have been building/packaging Rsync for years ? almost a decade in fact. I think this happened once before this year, in fact.
 
It is equivalent to the more portable malloc/free, which I would prefer to have in this series even if it has to be wrapped in a #if defined (__TANDEM) block.
 
This call is considered not portable and allocates on the stack
2025 Jan 14
1
new release 3.4.0 - critical security release
Here is my fix for the situation:
 
diff --git a/popt/findme.c b/popt/findme.c
index ac4cbae..4fe8a18 100644
--- a/popt/findme.c
+++ b/popt/findme.c
@@ -25,12 +25,23 @@ const char * findProgramPath(const char * argv0)
     if (path == NULL) return NULL;
 
     bufsize = strlen(path) + 1;
+#if defined __TANDEM
+    start = pathbuf = malloc(bufsize);
+#else
     start = pathbuf =
2025 Jan 15
1
new release 3.4.0 - critical security release
The popt changes came from upstream popt. We have Solaris and FreeBSD CI
tests, along with linux, but don't have a method for testing other
platforms. If you submit a PR to fix this, please consider a way we can
test the fix in CI.
Cheers, Tridge
On Wed, 15 Jan 2025 at 14:35, <rsbecker at nexbridge.com> wrote:
> Another issue here in findme.c. strlcpy() is a BSD-only method and
>
2025 Jan 15
1
new release 3.4.0 - critical security release
I'd also note that the patches for 3.4.0 were made available to 81
different vendors via VINCE since 18th December (under embargo to give time
for vendors to prepare). It is unfortunate that it didn't cover the
platform you are building for. What platform is it btw?
On Wed, 15 Jan 2025 at 17:57, rsync.project <rsync.project at gmail.com> wrote:
> The popt changes came from
2025 Jan 15
1
new release 3.4.0 - critical security release
FYI: I think this is just missing #include ?rsync.h? in popt/findme.c
 
From: rsbecker at nexbridge.com <rsbecker at nexbridge.com> 
Sent: January 14, 2025 10:35 PM
To: rsbecker at nexbridge.com; 'rsync.project' <rsync.project at gmail.com>
Cc: rsync at lists.samba.org
Subject: RE: new release 3.4.0 - critical security release
 
Another issue here in findme.c. strlcpy() is
2012 Mar 01
14
[PATCH 0 of 3] RFC Paging support for AMD NPT V2
There has been some progress, but still no joy. Definitely not intended for
inclusion at this point.
Tim, Wei, I added a Xen command line toggle to disable IOMMU and P2M table
sharing.
Tim, I verified that changes to p2m-pt.c don''t break shadow mode (64bit
hypervisor and Win 7 guest).
Hongkaixing, I incorporated your suggestion in patch 2, so I should add your
Signed-off-by eventually.
2017 Feb 08
1
Re: Trouble moving OVMF guest to new host
On Wed, 2017-02-08 at 20:13 +0300, Aleksei wrote:
> I'm running libvirt in user session and libvirt creates VARS part of OVMF in ~/.config/libvirt/qemu/nvram/
> Check your xml, there should be lines like this:
> <os>
>     <type arch='x86_64' machine='pc-q35-2.7'>hvm</type>
>     <loader readonly='yes'
2017 Feb 21
2
How to set manually starting date/time for guest kvm
Hi there,
is there a way to set a guest to start with a specific date and time. (e.g.
when guest boots, starting guest time should always be
(2017-02-05T12:00:00)).
I've tried something like this in my kvm domain:
  <clock offset='variable' adjustment='-86400' basis='localtime'>
    <timer name='rtc' tickpolicy='delay'
2010 Aug 22
5
Help me... how to convert amchart to pdf
Hi
Guys
I need help.. I want to making 1 controller for covert html to pdf.. But
that html have amchart (swf). When I tried convert, the swf not loadded...
Any body can help me Please????
-- 
Senior Rails Developer
Anton Effendi - Wu You Duan
-- 
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send
2007 Sep 23
1
Newbie confusion.
Hello,
I am new to Rails and the Linux world coming from 12 years of advanced VB
programming. I am writing to try and clear up some confusion on my part
about installing Mongrel.
Please don''t take this as a rant, I do appreciate the effort that y''all put
into the community, but as a newbie, I was, and still am confused.
I want to learn about Mongrel, so it found
2017 Feb 08
3
Trouble moving OVMF guest to new host
Hello,
I recently had to reinstall my operating system on my computer. I made a
backup of the entire partition beforehand onto an external drive. Now I am
trying to import a VM from that backup onto the newly installed system.
What I've done so far:
   - copied over the qcow2 disk image
   - copied over the XML config file
   - copied over the OVMF files under /usr/share/edk2.git/ovmf-x64/
2010 Sep 20
2
For Your Own Info: Rails 2.3.2 is incompatible with Cucumber (0.8.5), Capybara (0.3.9) and Selenium-webdriver (0.0.17)
Railers,
I am running an application on Rails 2.3.2. For some reason within our
organization, we wish to remain on this version of Rails. For BDD/Testing,
we use Cucumber. So I installed Cucumber (0.8.5), Capybara (0.3.9) and
Selenium-webdriver (0.0.17). But when I run Cucumber on any feature, I get
an error saying *" wrong number of arguments (2 for 1) (ArgumentError)"*,
(Check here
2016 Oct 10
1
Windows 7 guest not starting with HyperV features enabled
Hi,
I have a Windows 7 SP1 Pro 64-bit VM which works fine on libvirt 2.3.0 
and Qemu 2.7.0.
If I enable HyperV features 
(https://libvirt.org/formatdomain.html#elementsFeatures) like "relaxed", 
"spinlocks" etc - VM doesn't boot. "Starting Windows" text appears for 
~2 seconds (no flying dots, no logo) and then it just goes to black 
screen. If I switch HyperV
2009 Sep 30
5
A rails plugin to generate css sprite image automatically
Hi guys,
I have written a rails plugin/gem to generate css sprite image
automatically.
The project repository is here: http://github.com/flyerhzm/css_sprite
It is based on RMagick and you need only define a rule from what
source images to a destination image, as follows:
forum_icon_vertical.gif:  # destination image file
  sources:                # source image file list
    - good_topic.gif
 
2016 Jul 05
3
ayuda frecuencia asistencia clase
Estimados usurios-R:
Tengo una lista de alumnos.
Hay alguna forma de sacar una tabla de frecuencias por la asistencia a
clases mensual.
Es decir cuantos días concurrió cada alumno en el mes.
Supongamos que la lista está conformada por ocho alumnos, el curso duró 4
días y quiero saber cuantos días concurrió cada uno al curso poniendolo en
la columna mes.
Quisiera obtener un cuadro así:
Alumnos
2000 Jan 26
2
Name Resolve Order?
I am a little confused.  In the smb.conf man page under the "name resolve
order" section, it states that setting "name resolve order = wins" will be
ignored if the "wins server" parameter is not set.  Elsewhere in the man
page it states that if you set "wins support = yes" then you cannot set the
wins server parameter.  Does this mean that a machine that is
2010 Aug 31
6
ajax and partials
Hello all,
I am still very new to programming and wonder if I could get some help.
I have tried to figure this out myself but still having trouble with
some of the concepts.  I’ll do my best to explain the problem and
include the code.  I may be completely off track, so ANY direction
offered would be  deeply appreciated.
I have a question model / object which consists of a question, answers,
and