Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 134409 Details for
Bug 197117
dev-python/pyvorbis-1.4 causes nicotine+-1.2.9 to crash with invalid pointer
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
pyvorbis-1.3-unicode.patch
pyvorbis-1.3-unicode.patch (text/plain), 1005 bytes, created by
Thomas Kuther
on 2007-10-26 10:13:16 UTC
(
hide
)
Description:
pyvorbis-1.3-unicode.patch
Filename:
MIME Type:
Creator:
Thomas Kuther
Created:
2007-10-26 10:13:16 UTC
Size:
1005 bytes
patch
obsolete
>diff -Nru pyvorbis-1.3/test/ogg123.py pyvorbis-patch/test/ogg123.py >--- pyvorbis-1.3/test/ogg123.py 2002-10-06 18:04:59.000000000 -0500 >+++ pyvorbis-patch/test/ogg123.py 2003-12-12 00:07:52.000000000 -0600 >@@ -165,9 +165,10 @@ > sys.exit(0) > > elif arg == '-d' or arg == '--device': >+ import ao > try: >- driver_id = ao_get_driver_id(val) >- except aoError: >+ driver_id = ao.driver_id(val) >+ except ao.aoError: > sys.stderr.write('No such device %s\n' % val) > sys.exit(1) > >@@ -199,7 +200,12 @@ > usage() > sys.exit(0) > >- myplayer = choices[modchoice]() # Either AOPlayer or LADPlayer >+ if modchoice == 'ao' and driver_id: >+ playerargs = (driver_id,) >+ else: >+ playerargs = () >+ >+ myplayer = apply(choices[modchoice],playerargs) # Either AOPlayer or LADPlayer > if verbose: > print "Module choice: %s" % modchoice >
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 197117
:
134407
| 134409 |
134410