Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 121125 Details for
Bug 180830
sys-apps/findutils - find segfaults with invalid number as -uid/-gid parameter
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
findutils-4.3.6-uid-gid-fix.patch
findutils-ALL-uid-gid-fix.patch (text/plain), 762 bytes, created by
Togge
on 2007-06-04 10:53:41 UTC
(
hide
)
Description:
findutils-4.3.6-uid-gid-fix.patch
Filename:
MIME Type:
Creator:
Togge
Created:
2007-06-04 10:53:41 UTC
Size:
762 bytes
patch
obsolete
>--- find/parser.c 2007-06-04 12:39:01.010869549 +0200 >+++ find/parser.c.new 2007-06-04 12:39:35.784384994 +0200 >@@ -911,7 +911,8 @@ > parse_gid (const struct parser_table* entry, char **argv, int *arg_ptr) > { > struct predicate *p = insert_num (argv, arg_ptr, entry); >- p->est_success_rate = (p->args.numinfo.l_val < 100) ? 0.99 : 0.2; >+ if (p) >+ p->est_success_rate = (p->args.numinfo.l_val < 100) ? 0.99 : 0.2; > return p; > } > >@@ -2208,7 +2209,8 @@ > parse_uid (const struct parser_table* entry, char **argv, int *arg_ptr) > { > struct predicate *p = insert_num (argv, arg_ptr, entry); >- p->est_success_rate = (p->args.numinfo.l_val < 100) ? 0.99 : 0.2; >+ if (p) >+ p->est_success_rate = (p->args.numinfo.l_val < 100) ? 0.99 : 0.2; > return p; > } >
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 180830
: 121125