FreeBSD Bugzilla – Attachment 250047 Details for
Bug 278430
Error in operator precedence in Heimdal LDAP code
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Correcting patch
hdb-ldap.diff (text/plain), 586 bytes, created by
andrew
on 2024-04-18 12:22:28 UTC
(
hide
)
Description:
Correcting patch
Filename:
MIME Type:
Creator:
andrew
Created:
2024-04-18 12:22:28 UTC
Size:
586 bytes
patch
obsolete
>diff --git a/crypto/heimdal/lib/hdb/hdb-ldap.c b/crypto/heimdal/lib/hdb/hdb-ldap.c >index 1b4024aa540a..9ff190edb3ca 100644 >--- a/crypto/heimdal/lib/hdb/hdb-ldap.c >+++ b/crypto/heimdal/lib/hdb/hdb-ldap.c >@@ -816,7 +816,7 @@ escape_value(krb5_context context, const unsigned char *unquoted, char **quoted) > } > > for (i = 0; unquoted[0] ; unquoted++) { >- if (need_quote((unsigned char *)unquoted[0])) { >+ if (need_quote(unquoted[0])) { > (*quoted)[i++] = '\\'; > (*quoted)[i++] = hexchar[(unquoted[0] >> 4) & 0xf]; > (*quoted)[i++] = hexchar[(unquoted[0] ) & 0xf];
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 278430
:
250047
|
250193