[Bug 1221700] [NEW] gtk3 look is set to unconfigured (unsure)

2013-09-06 Thread Nikita Zlobin
Public bug reported:

>From some time i got ugly unconfigured gtk3 look, used regardles of known 
>~/.config/gtk3/settings.ini. But when i tried with other session types (xfce 
>and some light WM and even pure terminal session) gtk3 was OK.
One time i decided, how xsettings-kde works, and killed it. Unexpectedly gtk3 
look was fixed (no need to restart gtk3 stuff).
This problem affects icon theme as well.

xsettings-kde 0.12.3-0ubuntu2.1
ubuntu version 12.04.1 (real distro is kxstudio, but xsettings-kde is from 
ubuntu-proposed section)

** Affects: xsettings-kde (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1221700

Title:
  gtk3 look is set to unconfigured (unsure)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsettings-kde/+bug/1221700/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053471] Re: YATE 4.2.0.2 is available for Ubuntu 12.04

2014-04-30 Thread Nikita Zlobin
Still no changes in 12.04.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053471

Title:
  YATE 4.2.0.2 is available for Ubuntu 12.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/yate/+bug/1053471/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1165819] [NEW] Broken short options with optional argument (argp parser from libc6 package)

2013-04-07 Thread Nikita Zlobin
Public bug reported:

When GNU option with optional argument is specified in short form and argument 
is separated from option key by space (e.g., "-F /tmp/blah"), then argument is 
not seen by argp parser and assumed not specified. But without separating space 
all OK.
For options with mandatory argument (for which flag OPTION_ARG_OPTIONAL was not 
specified in code) this bug doesn't appear: even with space between key and 
argument the last is seen by parser).

Applications, using argp.
Yoshimi 1.0, zynaddsubfx fork, is that place, where i located this bug (first i 
treated it as yoshimi bug).
I don't know, what are other applications use argp. Only sure, that apps, using 
glib or probably, qt4 and other alternative generic libraries, most like to not 
use argp directly.

Versions.
libc6 2.15-0ubuntu10.4 (amd64 binary) from proposed archive
https://launchpad.net/ubuntu/+source/eglibc/2.15-0ubuntu10.4/
linux 3.2.0-40-lowlatency from kxstudio
distro version is 12.04.1
Note: though it is not ubuntu itself - it is kxstudio, however it supplies only 
specific packages - just like ubuntustudio).

** Affects: eglibc (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1165819

Title:
  Broken short options with optional argument (argp parser from libc6
  package)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/eglibc/+bug/1165819/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1178668] [NEW] Rebuild fltk1.1 dependants packages with fltk1.3

2013-05-10 Thread Nikita Zlobin
Public bug reported:

The main reason for that is unicode support, which exists only on FLTK 1.3 
(besides fltk2).
That should be critical for all non-english users.
I already tried that with zynaddsubfx and its fork yoshimi, both as good as 
expected.
Ideally fltk1.3 could completely replace version 1.1 and take its place in main 
repo.

If some fltk applications was removed due to lack of unicode support,
there is good case to reabilite them.

Affected packages:
quite large list of packages, formally — all fltk 1.1 dependants.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: applications fltk unicode utf8

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1178668

Title:
  Rebuild fltk1.1 dependants packages with fltk1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1178668/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 3735] Re: Konqueror can't remember passwords for launchpad or amazon

2013-05-11 Thread Nikita Zlobin
Hello. I have this bug.
Konqueror 4.10.2 (from kubuntu-backport ppa), ubuntu 12.04

Not sure, is it good, to report if when causer is from ppa.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is a bug assignee.
https://bugs.launchpad.net/bugs/3735

Title:
  Konqueror can't remember passwords for launchpad or amazon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/3735/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 662561] [NEW] argz_extract() breaks freeing of both "argv" and "argz" strings

2010-10-18 Thread Nikita Zlobin
Public bug reported:

Hi all. I'm using kxstudio, but libc6 packages are taken from ubuntu.
Where to find info about "argz" functions family: in argz manual (man argz).

Try this example:
/**/

#include 
#include 

/* "argz" parameter, which is command line with arguments,
 * separated by NULL characters, can be found in /proc/[PID]/cmdline file for 
any PID */
char * cmdline;
char * cmdline_size;
get_process_cmdline( &cmdline, &cmdline_size ); // User-defined function

int argc = argz_count( cmdline, cmdline_size ); // All right...
char ** argv = malloc( argc + 1);

if (argc) printf ( "arg0: %s", argv[0] );// Success
if (argc > 0) printf ( "arg1: %s", argv[1] );// Success

free( * argv );   /* Without effect - argv[0] and argv[1] are still reachable */
free( argv );/* segmentation fault! =) */

/*/

Below is output of program, using argz functionality:

==

*** glibc detected *** gladish: free(): invalid next size (fast): 
0x02310460 ***
=== Backtrace: =
/lib/libc.so.6(+0x775b6)[0x7f5e94f255b6]
/lib/libc.so.6(cfree+0x73)[0x7f5e94f2be53]
gladish[0x42c989]
gladish[0x41b763]
gladish[0x41b9b3]
gladish[0x41bb13]
gladish[0x41be5a]
gladish[0x41b5c1]
gladish[0x41bff7]
gladish[0x40fd65]
/lib/libglib-2.0.so.0(+0x3f09b)[0x7f5e998db09b]
/lib/libglib-2.0.so.0(g_main_context_dispatch+0x1f2)[0x7f5e998da8c2]
/lib/libglib-2.0.so.0(+0x42748)[0x7f5e998de748]
/lib/libglib-2.0.so.0(g_main_loop_run+0x195)[0x7f5e998dec55]
/usr/lib/libgtk-x11-2.0.so.0(gtk_main+0xa7)[0x7f5e9747abb7]
gladish[0x410072]
/lib/libc.so.6(__libc_start_main+0xfd)[0x7f5e94eccc4d]
gladish[0x40fbd9]
=== Memory map: 
0040-0044 r-xp  08:04 785500 
/usr/bin/gladish
0063f000-0064 r--p 0003f000 08:04 785500 
/usr/bin/gladish
0064-00642000 rw-p 0004 08:04 785500 
/usr/bin/gladish
00642000-00644000 rw-p  00:00 0 
02044000-023d9000 rw-p  00:00 0  [heap]
7f5e8800-7f5e88021000 rw-p  00:00 0 
7f5e88021000-7f5e8c00 ---p  00:00 0 
7f5e8c9be000-7f5e8ca1e000 rw-s  00:04 209223742  
/SYSV (deleted)
7f5e8cafc000-7f5e8cbd6000 r-xp  08:04 796199 
/usr/lib/libasound.so.2.0.0
7f5e8cbd6000-7f5e8cdd6000 ---p 000da000 08:04 796199 
/usr/lib/libasound.so.2.0.0
7f5e8cdd6000-7f5e8cddc000 r--p 000da000 08:04 796199 
/usr/lib/libasound.so.2.0.0
7f5e8cddc000-7f5e8cddd000 rw-p 000e 08:04 796199 
/usr/lib/libasound.so.2.0.0
7f5e8ce11000-7f5e8ce15000 r-xp  08:04 799982 
/usr/lib/libcanberra-0.22/libcanberra-alsa.so
7f5e8ce15000-7f5e8d014000 ---p 4000 08:04 799982 
/usr/lib/libcanberra-0.22/libcanberra-alsa.so
7f5e8d014000-7f5e8d015000 r--p 3000 08:04 799982 
/usr/lib/libcanberra-0.22/libcanberra-alsa.so
7f5e8d015000-7f5e8d016000 rw-p 4000 08:04 799982 
/usr/lib/libcanberra-0.22/libcanberra-alsa.so
7f5e8d016000-7f5e8d076000 rw-s  00:04 209190932  
/SYSV (deleted)
7f5e8d076000-7f5e8d6bd000 r--p  08:04 1068210
/usr/share/icons/gnome/icon-theme.cache
7f5e8d6bd000-7f5e8e462000 r--p  08:04 1046777
/usr/share/icons/hicolor/icon-theme.cache
7f5e8e462000-7f5e8e4fa000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e4fa000-7f5e8e592000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e592000-7f5e8e62a000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e62a000-7f5e8e6c2000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e6c2000-7f5e8e75a000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e75a000-7f5e8e7f2000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e7f2000-7f5e8e88a000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e88a000-7f5e8e922000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e922000-7f5e8e9ba000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8e9ba000-7f5e8ea52000 r--p  08:04 1058979
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f5e8ea52000-7f5e8ea57000 r-xp  08:04 949601 
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbuflo

[Bug 662561] Re: argz_extract() breaks freeing of both "argv" and "argz" strings

2010-10-18 Thread Nikita Zlobin


-- 
argz_extract() breaks freeing of both "argv" and "argz" strings
https://bugs.launchpad.net/bugs/662561
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 662561] Re: argz_extract() breaks freeing of both "argv" and "argz" strings

2010-10-18 Thread Nikita Zlobin
Classic glibc doesn't break freeing (another user tested on gentoo)

-- 
argz_extract() breaks freeing of both "argv" and "argz" strings
https://bugs.launchpad.net/bugs/662561
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs