search for: uninti

Displaying 20 results from an estimated 21 matches for "uninti".

Did you mean: uninit
2006 Oct 31
0
6288308 Unintialized struct causes getrusage(3C) to return bogus data
Author: johansen Repository: /hg/zfs-crypto/gate Revision: 975d44f4cb80f31c669fd814d1fdeea15318aa5b Log message: 6288308 Unintialized struct causes getrusage(3C) to return bogus data Files: update: usr/src/uts/common/syscall/rusagesys.c
2006 Feb 11
2
Migrations and Unintialized Constants Error
I am running into a problem with two of my tables and the "uninitialized constant" error when using migration. I get the "uninitialized constant Note" when running the following code in my migration file: create_table :notes do |t| t.column :id, :integer t.column :noteshare_id, :integer t.column :title, :string t.column :covered, :string
2006 Oct 04
3
more linux headaches
After creating and installing a gem I get ''unintialized constant Wxruby2'' when trying to run wxRuby. Kevin, can you give me some pointers on getting this thing working? Roy
2017 Apr 06
2
[bug report] virtio_net: rework mergeable buffer handling
...^^^ It's possible that this code is correct, but I looked at it and wasn't immediately convinced. Returning non-NULL buf is not sufficient to show that "ctx" is initialized, because if it's vq->indirect then "buf" is still unintialized. Also it's possible that receive_buf() checks vq->indirect through some side effect way that I didn't see so it doesn't use the uninitialized value... I feel like if this is a false positive, that means the rules are too subtle... :/ 1043 received...
2017 Apr 06
2
[bug report] virtio_net: rework mergeable buffer handling
...^^^ It's possible that this code is correct, but I looked at it and wasn't immediately convinced. Returning non-NULL buf is not sufficient to show that "ctx" is initialized, because if it's vq->indirect then "buf" is still unintialized. Also it's possible that receive_buf() checks vq->indirect through some side effect way that I didn't see so it doesn't use the uninitialized value... I feel like if this is a false positive, that means the rules are too subtle... :/ 1043 received...
2006 Apr 04
3
Mongrel Web Server 0.3.12.1 -- Iron Mongrel
Hello All Mongrel Users, For the unintiated, Mongrel is a web server that runs Ruby web applications really fast. Read http://mongrel.rubyforge.org/ to get find out more about it. This is the Iron Mongrel release. It is the result of trying to trash Mongrel until it can''t move and then fixing anything that comes up. The work...
2016 Oct 24
1
[PATCH] nouveau: hide gcc-4.9 -Wmaybe-uninitialized
gcc-4.9 notices that the validate_init() function returns unintialized data when called with a zero 'nr_buffers' argument, when called with the -Wmaybe-uninitialized flag: drivers/gpu/drm/nouveau/nouveau_gem.c: In function ‘validate_init.isra.6’: drivers/gpu/drm/nouveau/nouveau_gem.c:457:5: error: ‘ret’ may be used uninitialized in this function [-Werro...
2006 Sep 13
2
Problem with RSpec and Mocha/Stubba
...(0.3.2 and 0.6.3 respectively) and I''m no longer able to use Mocha/ Stubba with RSpec. Its actually only Stubba I''m interested in as I use RSpec''s built-in mocking library. I require stubba in my spec file but whenever I try and run my spec it fails with the error: Unintialized constant Test Digging around the Mocha source, it seems that it is trying to add extensions to Test::Unit which I haven''t required as I don''t need it. This isn''t a Rails project, just a standalone Ruby lib that I''m working on. I''ve tried the...
2016 Sep 13
3
undef * 0
Hi Soham, You're right that in LLVM IR arithmetic (with the current definition of `undef`) is not distributive. You can't replace `A * (B + C)` with `A * B + A * C` in general, since (exactly as you said) for A = `undef`, B = `1`, C = `-1` the former always computes `0` while the latter computes `undef`. This is fundamentally because replacing `A * (B + C)` with `A * B + A * C`
2016 May 05
0
[PULL] virtio/qemu: fixes for 4.6
...------------------- virtio/qemu: fixes for 4.6 A couple of fixes for virtio and for the new QEMU fw cfg driver. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> ---------------------------------------------------------------- Dan Carpenter (2): firmware: qemu_fw_cfg.c: potential unintialized variable virtio: Silence uninitialized variable warning drivers/firmware/qemu_fw_cfg.c | 2 +- drivers/virtio/virtio_ring.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
2016 May 05
0
[PULL] virtio/qemu: fixes for 4.6
...------------------- virtio/qemu: fixes for 4.6 A couple of fixes for virtio and for the new QEMU fw cfg driver. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> ---------------------------------------------------------------- Dan Carpenter (2): firmware: qemu_fw_cfg.c: potential unintialized variable virtio: Silence uninitialized variable warning drivers/firmware/qemu_fw_cfg.c | 2 +- drivers/virtio/virtio_ring.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
2007 Feb 28
1
hi guys problem with running gruff
...8, 7, 9]) g.labels = {0 => ''2003'', 2 => ''2004'', 4 => ''2005''} g.write(''my_fruity_graph.png'') when i replaced require ''gruff'' with require_gem ''gruff'' i got rid of one but still this unintialized name error keeps poppoin when i just run it with ruby >ruby gruff.rb >gruff.rb:4: uninitialized constant Gruff (NameError) Could u guys plese tell me what i am doing wrong. thanks prem Prem Anand Thilagar Univ Of Texas Arlington TX,76010 USA --~--~---------~--~----~-----------...
2006 Apr 04
1
Mongrel Web Server 0.3.12.1 -- Iron Mongrel
Hello All Mongrel Users, For the unintiated, Mongrel is a web server that runs Ruby web applications really fast. Read http://mongrel.rubyforge.org/ to get find out more about it. This is the Iron Mongrel release. It is the result of trying to trash Mongrel until it can''t move and then fixing anything that comes up. The work...
2016 Sep 13
2
undef * 0
...if the expression is transformed to $a xor b$ then it may return 'undef'. As a result, the transformation ' ((a & (~b)) |((~a) & b)) ~> xor a b ' is unsound. LLVM presently performs this transformation. Best Regards, soham source ---------- int foo(){ int a,b; // unintialized and 'undef' return ((a & (~b)) |((~a) & b)); } unoptimized IR // clang++ -emit-llvm udf.cpp -S ---------------------- define i32 @_Z3foov() #0 { entry: %a = alloca i32, align 4 %b = alloca i32, align 4 %0 = load i32, i32* %a, align 4 %1 = load i32, i32* %b, align 4...
2008 May 22
9
Retrieving Mutliple Records using find_by_*
I was hoping that AR''s find_by_* magic methods would help me retrieve multiple items somewhat like the following: names_to_find = [''Larry'', ''Moe'', ''Curly''] found_people = Person.find_by_name(names_to_find) Is there a way to accomplish this using find_by_* (or even find(:all) using some sort of conditions) or must I resort to SQL
2014 May 02
0
Wine release 1.7.18
...demo crashes on startup 36099 Ankh 2: Heart of Osiris fails to start 36106 Installshield Wizard: scrollbar appears where it shouldn't be 36114 msi/action definite leak in is_process_limited 36132 valgrind shows some leaks in gdiplus/tests/graphics.c 36149 valgrind shows some an unintialized variable in jscript/tests/run.c 36161 valgrind shows a leak in wmiutils/tests/path.c 36177 Saints Row the Third (Steam) crashes on startup (expects 'PixelShader1xMaxValue' >= 32) 36207 Steel Beasts v1.19 demo installer crashes on exit 36210 Sybase PowerDesigner 16.5 ...
2014 Jun 13
0
Wine release 1.7.20
...memory use in winspool.drv/tests/info.c 36604 valgrind shows two definite leaks in winspool.drv/tests/info.c 36605 valgrind shows a definite leak in wintrust/tests/softpub.c 36627 Games For Windows Live 2.0.0687.0 (PANORAMA_V2.00_RTM.090421-2351) needs MSASN1.dll 36661 valgrind shows an unintialized write in ws2_32/tests/sock.c: test_completion_port() 36667 VBScript doesn't handle numbers in exponential form (e.g. 1e2) 36698 AudibleManager 5.5.x crashes at startup 36715 3dmark 2003 needs msvcp70.dll.??8std@@YA_NABV?$basic_string at DU?$char_traits at D@std@@V?$allocator at D...
2017 Jul 21
0
Wine release 2.13
...------------------------------------------- Bugs fixed in 2.13 (total 33): 32418 Skylanders Spyro's Adventure can't find USB RFID reader, needs hid.dll.HidD_SetOutputReport implementation 36612 valgrind shows a definite leak in winhttp/tests/notification.c 36613 valgrind shows an unintialized write in winhttp/tests/notification.c 38296 Ion Assault (Steam) crashes before the main menu (IWMReader::QueryInterface doesn't support IWMReaderAdvanced2, 'ae14a945-b90c-4d0d-9127-80d665f7d73e') 39833 File not found error when loading fmod audio in Dungeon of the Endless...
2015 Apr 03
0
Wine release 1.7.40
...ws some leaks in gdiplus/tests/image.c 36190 comdlg32/itemdlg shows a ton of valgrind warnings 36305 valgrind shows a possible leak in netapi32/tests/access.c 36332 Total Commander 8.x: moving files between folders renders them inaccessible (SetNamedSecurityInfo) 36656 valgrind shows an unintialized write in comdlg32/tests/itemdlg.c 36709 Multiple applications/games from Windows 7 need slc.SLGetWindowsInformationDWORD semi-stub/implementation 36842 Can't set a static crontrol's text to empty by passing NULL pointer 37731 Montezuma's Revenge Remake fails with fatal er...
2012 Jun 22
0
Wine release 1.5.7
...eeds msvcp80.dll.??0?$basic_stringstream at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QAE at H@Z 17709 AutoCAD 2008: Quick Help Toolbar incorrectly displayed 17733 Trivial Pursuit Unhinged +NoCD fails to load 18160 Compile broken in dlls/iphplpapi/ipstats.c on NetBSD 5.0 18161 unintialized variables in dlls/ntdll/cdrom.c on NetBSD 5.0 18962 Netscape is crashing immediately after execution. 19570 Cake Mania 2 page fault 20189 Svenska spel poker-client is useless 20661 Snuffler: rendering of buttons and list items doesn't work. 20788 problem with bet-at-home po...