o) Remove patch to solve alpha compile problems, cause the fix is already
included in the sources.
This commit is contained in:
parent
c02e8715b5
commit
68636d9b77
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=104662
2 changed files with 0 additions and 72 deletions
|
@ -1,36 +0,0 @@
|
|||
*** src/lib/var.c.orig Tue Mar 9 21:11:30 2004
|
||||
--- src/lib/var.c Tue Mar 9 21:12:46 2004
|
||||
***************
|
||||
*** 120,126 ****
|
||||
int n;
|
||||
int bytes;
|
||||
|
||||
! if (format == NULL)
|
||||
return -1;
|
||||
bytes = 0;
|
||||
while (*format != '\0') {
|
||||
--- 120,126 ----
|
||||
int n;
|
||||
int bytes;
|
||||
|
||||
! if (format == NULL || ap == NULL)
|
||||
return -1;
|
||||
bytes = 0;
|
||||
while (*format != '\0') {
|
||||
***************
|
||||
*** 204,210 ****
|
||||
int n;
|
||||
var_mvsnprintf_cb_t ctx;
|
||||
|
||||
! if (format == NULL)
|
||||
return -1;
|
||||
if (buffer != NULL && bufsize == 0)
|
||||
return -1;
|
||||
--- 204,210 ----
|
||||
int n;
|
||||
var_mvsnprintf_cb_t ctx;
|
||||
|
||||
! if (format == NULL || ap == NULL)
|
||||
return -1;
|
||||
if (buffer != NULL && bufsize == 0)
|
||||
return -1;
|
|
@ -1,36 +0,0 @@
|
|||
*** src/lib/var.c.orig Tue Mar 9 21:11:30 2004
|
||||
--- src/lib/var.c Tue Mar 9 21:12:46 2004
|
||||
***************
|
||||
*** 120,126 ****
|
||||
int n;
|
||||
int bytes;
|
||||
|
||||
! if (format == NULL)
|
||||
return -1;
|
||||
bytes = 0;
|
||||
while (*format != '\0') {
|
||||
--- 120,126 ----
|
||||
int n;
|
||||
int bytes;
|
||||
|
||||
! if (format == NULL || ap == NULL)
|
||||
return -1;
|
||||
bytes = 0;
|
||||
while (*format != '\0') {
|
||||
***************
|
||||
*** 204,210 ****
|
||||
int n;
|
||||
var_mvsnprintf_cb_t ctx;
|
||||
|
||||
! if (format == NULL)
|
||||
return -1;
|
||||
if (buffer != NULL && bufsize == 0)
|
||||
return -1;
|
||||
--- 204,210 ----
|
||||
int n;
|
||||
var_mvsnprintf_cb_t ctx;
|
||||
|
||||
! if (format == NULL || ap == NULL)
|
||||
return -1;
|
||||
if (buffer != NULL && bufsize == 0)
|
||||
return -1;
|
Loading…
Reference in a new issue