memory-leaks Questions
3
When trying to open the "Save As" dialog to save any file in Visual Studio Code on KDE (Ubuntu 24.04, the dialog does not open, and a separate process "kdialog" starts using 100...
Labrador asked 15/10, 2024 at 9:41
6
Solved
A follow-up question to Memory leaks when calling ITK from Visual Studio DLL
I refined the problem to the simplest example.
struct A
{
public:
A()
{
mp_data = new int(0x42);
}
~A()
{
del...
Bausch asked 24/4, 2012 at 14:26
5
I also tried using the ApplicationContext but it still leaks for some reason.
Found a similar post about the issue here AdActivity leak on AdMob (SDK 7.0) for Android but without an answer.
Also...
Rheingold asked 23/2, 2020 at 5:38
2
Solved
I run Valgrind with the following parameters:
--leak-check=full --show-reachable=yes --leak-resolution=high --num-callers=100 --trace-children=yes
In memory leaks log, I see some error messages ...
Austerity asked 28/6, 2012 at 10:36
1
I'm trying to debug a memory leak in some vendor-provided JNI/native code and, like many people it seems, started here:
https://technology.blog.gov.uk/2015/12/11/using-jemalloc-to-get-to-the-bottom...
Brandt asked 22/6, 2020 at 17:18
3
I'm currently using the RabbitMQ (3.6.2-1) on Ubuntu(16.04) in production. Producers publish messages and consumers consume messages and everything works correctly but sometimes RabbitMQ doesn't re...
Monaural asked 26/10, 2018 at 11:17
2
From reading about the valgrind memory leak report of "possibly lost", I had understood that there is a very small chance that this kind of report will be a false-positive report. What I could not ...
Zebulun asked 13/7, 2013 at 14:4
0
While investigating the memory use of an application that exchanges message through PyZMQ using tracemalloc, I noticed a weird behavior of pickling and unpickling enums: memory looks like it is lea...
Diffusion asked 28/6, 2024 at 12:40
3
We have an app which seems to have connection leaks (SQL Server says that the max pool size has been reached). I am alone on my dev machine (obviously), and just by navigating the app, I trigger th...
Fishhook asked 21/4, 2011 at 8:58
2
Please provide a simple step by step guide to looking into java heap dump from a Kubernetes pod.
Seligmann asked 29/9, 2020 at 14:40
4
I am constructing MongoClient Connection in the below manner :
public static synchronized MongoClient getInstance(String mongoDbUri) {
try {
// Standard URI format: mongodb://[dbuser:dbpassword@]...
Manzanares asked 16/6, 2015 at 11:48
4
Solved
In jQuery if we use .remove() for removing some element, then all bound events and jQuery data associated with the elements are removed.
But what happens if we "remove" the elements with .html()?...
Chanell asked 25/9, 2011 at 23:0
6
Solved
I'm surprised that Google C++ Testing Framework does not explicitly support checking for memory leaks. There is, however, a workaround for Microsoft Visual C++, but what about Linux?
If memory man...
Brachiopod asked 20/3, 2015 at 20:3
12
Do you need to unsubscribe from Angular 2 http calls to prevent memory leak?
fetchFilm(index) {
var sub = this._http.get(`http://example.com`)
.map(result => result.json())
.map(json => ...
Gerlach asked 27/1, 2016 at 16:33
3
Solved
I am trying to see which process which is causing a memory leak, and dump the heap which is causing it to see what is the issue.
Which command do I use in gdb to set the memory leak on and check t...
Bartholomeo asked 8/2, 2013 at 14:59
3
Solved
What is a good way to find all of the references to an object in python?
The reason I ask is that it looks like we have a "memory leak". We are uploading image files to the server from a web brows...
Irving asked 9/8, 2012 at 20:51
2
I followed the approach mentioned in https://ricardomartins.cc/2016/06/08/interior-mutability for creating a graph in Rust using Rc and RefCell.
type NodeRef<i32> = Rc<RefCell<_Node<...
Rapid asked 14/12, 2017 at 21:46
4
Solved
Good day, everyone. Here is my code:
var express = require("express");
var session = require("express-session");
var app = express();
app.set("trust proxy", 1);
app....
Talbott asked 3/7, 2017 at 9:51
6
I found a few reference to people having a similar issue where the answer always was, make sure you call window.close() when done. However that does not seem to be working for me (node 0.8.14 and j...
Snaggletooth asked 15/12, 2012 at 14:43
50
Solved
What is this error, and why does it happen?
05-17 18:24:57.069: ERROR/WindowManager(18850): Activity com.mypkg.myP has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@44c46ff0...
Damicke asked 17/5, 2010 at 15:51
20
Solved
I am a C++ programmer on the Windows platform. I am using Visual Studio 2008.
I usually end up in the code with memory leaks.
Normally I find the memory leak by inspecting the code, but it is cum...
Novia asked 7/6, 2011 at 6:9
1
I've upgraded to the latest stable version of node (20.9.0) and now whenever I make a react app using npx create-react-app or using vite, it always shows the "possible eventEmitter memory leak...
Persephone asked 30/10, 2023 at 11:21
1
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void *thread_function(void *arg) {
char **records = malloc(1000000 * sizeof(char *));
if (records == NULL) {
perror...
Tropo asked 29/12, 2023 at 10:15
3
I have a huge memory leak problem involving a C-extension I'm developing. In C, I have an array of doubles called A and an int variable called AnotherIntVariablethat I want to pass to Python. Well,...
Vullo asked 1/4, 2011 at 3:42
5
I've found a very strange behaviour, sheet or fullScreenCover does not release objects that were passed to its item: parameter.
It works well and memory is releasing on iOS 16 built with both Xcode...
Reck asked 4/10, 2023 at 6:28
1 Next >
© 2022 - 2025 — McMap. All rights reserved.