Displaying 20 results from an estimated 8000 matches similar to: "C/C++ 'assert' should not be used in R packages"
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
Full_Name: Venkatesh Mysore
Version: R-1.7.0
OS: WindowsXP
Submission from: (NULL) (216.165.110.10)
While accessing Rproxy.dll repeatedly (using the code from the (D)COM example in
the R website) causes a failure in the 24th iteration. R-1.6.2 does NOT give
this error. This seems to be a memory management error, that might be linked to
the huge leakage difference between R-1.7.0 and R-1.6.2
2015 Aug 08
1
[PATCH] always call FreeLibrary()
get_utf8_argv() function calls LoadLibrary to load msvcrt.dll,
but doesn't call FreeLibrary() if it returns an error.
Currently both flac.exe and metaflac.exe exit immediately
if get_utf8_argv() fails, so it's not a big problem. But IMHO
it's better no to have leaked resources anyway.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: win_utf_io.patch
2008 Sep 10
2
App ask for admin privilege
i've tried one app that install nicely but told me " you have to use an admin account to run this app for the first time"
Is there a way to fix this ?
2007 Dec 05
21
Fwd: win32/process problem
Any ideas?
---------- Forwarded message ----------
From: Christian Kerth <christian.ke... at dynamicmedia.at>
Date: Dec 5, 8:28 am
Subject: win32/process problem
To: comp.lang.ruby
I have an application that consists of serveral independent parts.
I want to use the Windows Process API to spawn the different
processes.
e.g.
require ''rubygems''
require
2008 Aug 04
1
Emu48 under wine, misbehaves
Hello,
I installed Emu48 (emulator of HP48 and HP49 calculators) on Wine, but
unfortunately it misbehaves.
The "screen" of the emulated calculator shows strange colors (sometimes
yellow on white, sometimes a pale pink color, depends on selected "skin").
Any suggestions to fix the problem? This is wine 1.1.2 on Arch Linux.
Thanks!
--
Renan Birck ~ Santa Maria, RS, Brasil
2005 Aug 26
1
update.packages() is broken?
Folks,
I am using R 2.1.1 on Apple OS X 10.3.
Earlier, I used to say
$ sudo R
> update.packages()
and all the packages used to get installed.
For several weeks, I noticed that nothing has been coming through. I
used the R-for-Mac graphics console and I find that there are many
packages where new versions have come out which I don't have. Is
something wrong with update.packages()?
I
2012 Mar 01
1
[Bug 46810] New: Mesa Failing To Build
https://bugs.freedesktop.org/show_bug.cgi?id=46810
Bug #: 46810
Summary: Mesa Failing To Build
Classification: Unclassified
Product: Mesa
Version: git
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Drivers/DRI/nouveau
2006 May 17
1
Need a little help with the pure Ruby win32-eventlog
Hi all,
I''m working on the EventLog#read method for the pure Ruby version of
win32-eventlog, but I''m stuck on the get_description private method.
Here are the problems:
* I don''t think I''m advancing the EVENTLOGRECORD properly between
iterations. Take a look at the end of the "while dwread > 0" loop. I
get some records, but not all of them.
2010 Oct 15
3
OLEPictureImpl error may need winetricks dll?
Any idea what dll I add with winetricks to correct this error?
fixme:ole:OLEPictureImpl_FindConnectionPoint
The program is called WriteWay, and it uses ole boxes to display text.
2013 Oct 02
2
C++ debugging help needed
I've had reports lately about segfaults in the rgl package. I've only
been able to reproduce these on Linux. I am not so familiar with C++
details, so I have a couple of questions way down below. But first some
background info.
One recipe to recreate the crash works with a new version 5.0-1 of the
mixOmics package:
> library(mixOmics)
> example(pca)
This crashes with
2012 Mar 20
0
[LLVMdev] recognizing DTORs and vptr updates in LLVM.
>> Using instruction level metadata for this would be appropriate. However, I
>> also don't understand why a race on this is truly benign.
>
> It isn't, really; calling it "benign" is deceptive. It's just that
> storing a pointer which is equal to the existing pointer stored at a
> given address almost always makes the optimizer/codegen generate code
2008 Jul 25
11
How to fix "CAPI 2.0 not installed"?
Hallo,
I recently installed wine 1.1.2 on my SlackWare 12.1 Linux
system, because I have to run a hardware debugging program
which only runs under Windows.
When I run the application, i get the message "CAPI 2.0 not
installed".
In the same directory as the application there's a file
called capi2032.dll, and I suspect that has something to
do with it.
If so, how do I tell wine that
2012 Mar 19
5
[LLVMdev] recognizing DTORs and vptr updates in LLVM.
On Mon, Mar 19, 2012 at 4:30 PM, Chris Lattner <clattner at apple.com> wrote:
>
> On Mar 19, 2012, at 2:52 PM, Kostya Serebryany wrote:
>
> Hello,
>
> While instrumenting LLVM IR in ThreadSanitizer (race detector), I need
> to distinguish between a store to vtable pointer (vptr) and any other
> regular store.
> This special treatment should be limited to class
2020 Jun 09
1
Rsync sometimes decides to delete all data
Hello,
I run into some really strange case I haven't seen so far over the
years.
I syncing a lot of different macines, raspberry pis to a backup server
nightly.
Lately one of them misbehaves.
Server rsync: rsync version 3.1.2 protocol version 31
Client rsync: rsync version 3.1.3 protocol version 31
Command used:
rsync --numeric-ids --delete --delete-excluded --delete-after -f
2023 Mar 08
2
[PATCH libnbd] lib/errors.c: Fix assert fail in exit path in multi-threaded code
When a highly multi-threaded program such as nbdcopy encounters an
error, there is a race condition in the library which can cause an
assertion failure and thus a core dump:
(1) An error occurs on one of the threads. nbdcopy calls exit(3).
(2) In lib/errors.c, the destructor calls pthread_key_delete.
(3) Another thread which is still running also encounters an error,
and inside libnbd the
2012 Mar 20
2
[LLVMdev] recognizing DTORs and vptr updates in LLVM.
On Mar 20, 2012, at 12:51 AM, Duncan Sands wrote:
>>> Using instruction level metadata for this would be appropriate. However, I
>>> also don't understand why a race on this is truly benign.
>>
>> It isn't, really; calling it "benign" is deceptive. It's just that
>> storing a pointer which is equal to the existing pointer stored at a
2007 May 23
0
[LLVMdev] Compiling llvm-gcc in linux/ppc
Hi Chris,
Chris Lattner wrote:
> On Tue, 22 May 2007, Nicolas Geoffray wrote:
>
>> OK, seems like there were unused TARGET_MACHO macros that would protect
>> these errors from happening. I made some modifications that add #if
>> TARGET_MACHO.
>>
>
> ok. If you send a patch in that adds these, I would be happy to apply it.
>
>
I will when
2004 Sep 22
0
traceroute misbehaviour on dual-home using -i or -s
My Linux workstation (Mandrake 10.1 kernel 2.6.8.1) is dual-homed to two
ADSL Internet providers. Card eth0 (192.168.9.250) is the default route
and leads to an SMC router (192.168.9.254). Card eth1 (192.168.1.250)
leads to a Linksys router (192.168.1.1). I''m not doing any NAT or PPPoE
in the workstation - the SMC and Linksys handle it all.
I know four commands that let you set an IP
2014 Dec 02
4
T.38 not working - help needed with log interpretation
Dear all,
I have the following situation:
Local T.38 endpoint <-> ASTERISK <-> SIP provider (with T.38 support)
I am trying to send a fax from my local T.38 endpoint to arbitrary external fax numbers (which I am not in control of, so I don't know if the other end supports T.38, is connected to a PBX, who is their provider, and so on), of course trying to use T.38 at least from
2005 Nov 25
1
Sudden failure!
Wine 20050111 has been working fine until today ... now it fails when I
go to run Quicken 2002.
I am running Fedora Core 3 on a Pentium 3 with all of the current
updates, wine 20050111. Windows Version is set to "Win98"
Error message:
fixme:msvcrt:_setmbcp Unreal codepages (e.g. -3) not implemented.
What has happened?
Thanks,
David Johnson