Module: website
Branch: master
Commit: 51fbcd325e6e6d69520fd13ea18d3acf7757cbad
URL: http://source.winehq.org/git/website.git/?a=commit;h=51fbcd325e6e6d69520fd1…
Author: Scott Ritchie <scott(a)open-vote.org>
Date: Thu Feb 12 01:36:13 2009 -0800
Note right click->save as for key on Ubuntu download page
Thanks,
Scott Ritchie
>From 2dd3692eb7d9fe7d3476ade9ab486b97ab881b53 Mon Sep 17 00:00:00 2001
From: Scott Ritchie <scott(a)open-vote.org>
Date: Thu, 12 Feb 2009 01:24:43 -0800
Subject: Note right click->save as when saving key on Ubuntu page
---
templates/en/download/deb.template | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/templates/en/download/deb.template b/templates/en/download/deb.template
index 240beaa..e7d8c8c 100644
--- a/templates/en/download/deb.template
+++ b/templates/en/download/deb.template
@@ -43,10 +43,10 @@ version you are running.</p>
to your system's list of trusted keys.</p>
<p><b><a href="http://wine.budgetdedicated.com/apt/Scott%20Ritchie.gpg">Download
-and save Scott Ritchie's key</a></b> to your desktop. Then open the
-<b>Authentication</b> tab, click <b>import key file</b>, and select the key
-file you just saved (<i>Scott Ritchie.gpg</i>). It is safe to delete this file
-after doing this step.</p>
+and save Scott Ritchie's key</a></b> (right click -> save as) to your desktop.
+Then open the <b>Authentication</b> tab, click <b>import key file</b>, and
+select the key file you just saved (<i>Scott Ritchie.gpg</i>). It is safe to
+delete this file after doing this step.</p>
<img src="{$root}/images/distro/ubuntu-softwaresources2.png" width="531" height="509" alt="System->Administration->Software Sources->Authentication" border="0">
Module: wine
Branch: master
Commit: a552587de1b16c95dc53a502e57ce465a232d61c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=a552587de1b16c95dc53a502e…
Author: Paul Bryan Roberts <pbronline-wine(a)yahoo.co.uk>
Date: Thu Feb 12 08:09:17 2009 +0000
ntdll: Avoid potential infinite loop.
---
dlls/ntdll/nt.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 879a324..7d24731 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -293,13 +293,15 @@ NTSTATUS WINAPI NtQueryInformationToken(
char stack_buffer[256];
unsigned int server_buf_len = sizeof(stack_buffer);
void *buffer = stack_buffer;
- BOOLEAN need_more_memory = FALSE;
+ BOOLEAN need_more_memory;
/* we cannot work out the size of the server buffer required for the
* input size, since there are two factors affecting how much can be
* stored in the buffer - number of groups and lengths of sids */
do
{
+ need_more_memory = FALSE;
+
SERVER_START_REQ( get_token_groups )
{
TOKEN_GROUPS *groups = tokeninfo;